hmm
This commit is contained in:
parent
7c1138c0d3
commit
037a5bcb4c
6 changed files with 9 additions and 6 deletions
2
.github/workflows/release-plugin.yml
vendored
2
.github/workflows/release-plugin.yml
vendored
|
|
@ -41,7 +41,7 @@ jobs:
|
||||||
|
|
||||||
- name: Create release
|
- name: Create release
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
tag="${GITHUB_REF#refs/tags/}"
|
tag="${GITHUB_REF#refs/tags/}"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "sample-plugin",
|
"id": "sample-plugin",
|
||||||
"name": "Sync & Share",
|
"name": "Sync & Share",
|
||||||
"version": "0.0.3",
|
"version": "0.0.5",
|
||||||
"minAppVersion": "0.0.0",
|
"minAppVersion": "0.0.0",
|
||||||
"description": "Demonstrates some of the capabilities of the Obsidian API.",
|
"description": "Demonstrates some of the capabilities of the Obsidian API.",
|
||||||
"author": "Obsidian",
|
"author": "Obsidian",
|
||||||
|
|
|
||||||
4
plugin/package-lock.json
generated
4
plugin/package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "obsidian-sample-plugin",
|
"name": "obsidian-sample-plugin",
|
||||||
"version": "0.0.3",
|
"version": "0.0.5",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "obsidian-sample-plugin",
|
"name": "obsidian-sample-plugin",
|
||||||
"version": "0.0.3",
|
"version": "0.0.5",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^16.11.6",
|
"@types/node": "^16.11.6",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "obsidian-sample-plugin",
|
"name": "obsidian-sample-plugin",
|
||||||
"version": "0.0.3",
|
"version": "0.0.5",
|
||||||
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
|
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
|
|
@ -12,3 +12,4 @@ writeFileSync("manifest.json", JSON.stringify(manifest, null, "\t"));
|
||||||
let versions = JSON.parse(readFileSync("versions.json", "utf8"));
|
let versions = JSON.parse(readFileSync("versions.json", "utf8"));
|
||||||
versions[targetVersion] = minAppVersion;
|
versions[targetVersion] = minAppVersion;
|
||||||
writeFileSync("versions.json", JSON.stringify(versions, null, "\t"));
|
writeFileSync("versions.json", JSON.stringify(versions, null, "\t"));
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,5 +2,7 @@
|
||||||
"0.0.0": "0.0.0",
|
"0.0.0": "0.0.0",
|
||||||
"0.0.1": "0.0.0",
|
"0.0.1": "0.0.0",
|
||||||
"0.0.2": "0.0.0",
|
"0.0.2": "0.0.0",
|
||||||
"0.0.3": "0.0.0"
|
"0.0.3": "0.0.0",
|
||||||
|
"0.0.4": "0.0.0",
|
||||||
|
"0.0.5": "0.0.0"
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue