This commit is contained in:
Andras Schmelczer 2024-12-19 23:24:07 +00:00
parent 7c1138c0d3
commit 1f8f7ebd6b
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
6 changed files with 9 additions and 6 deletions

View file

@ -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/}"

View file

@ -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",

View file

@ -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",

View file

@ -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": {

View file

@ -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"));

View file

@ -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"
}