hmm
This commit is contained in:
parent
7c1138c0d3
commit
1f8f7ebd6b
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
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
tag="${GITHUB_REF#refs/tags/}"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "sample-plugin",
|
||||
"name": "Sync & Share",
|
||||
"version": "0.0.3",
|
||||
"version": "0.0.5",
|
||||
"minAppVersion": "0.0.0",
|
||||
"description": "Demonstrates some of the capabilities of the Obsidian API.",
|
||||
"author": "Obsidian",
|
||||
|
|
|
|||
4
plugin/package-lock.json
generated
4
plugin/package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "obsidian-sample-plugin",
|
||||
"version": "0.0.3",
|
||||
"version": "0.0.5",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "obsidian-sample-plugin",
|
||||
"version": "0.0.3",
|
||||
"version": "0.0.5",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@types/node": "^16.11.6",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "obsidian-sample-plugin",
|
||||
"version": "0.0.3",
|
||||
"version": "0.0.5",
|
||||
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -12,3 +12,4 @@ writeFileSync("manifest.json", JSON.stringify(manifest, null, "\t"));
|
|||
let versions = JSON.parse(readFileSync("versions.json", "utf8"));
|
||||
versions[targetVersion] = minAppVersion;
|
||||
writeFileSync("versions.json", JSON.stringify(versions, null, "\t"));
|
||||
|
||||
|
|
|
|||
|
|
@ -2,5 +2,7 @@
|
|||
"0.0.0": "0.0.0",
|
||||
"0.0.1": "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