Fix publish and tag new release

This commit is contained in:
Andras Schmelczer 2024-12-19 23:17:12 +00:00
commit f5eca5ddf8
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
5 changed files with 8 additions and 5 deletions

View file

@ -11,6 +11,7 @@ on:
branches: ["master"] branches: ["master"]
env: env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs: jobs:
build-plugin: build-plugin:

View file

@ -1,7 +1,7 @@
{ {
"id": "sample-plugin", "id": "sample-plugin",
"name": "Sync & Share", "name": "Sync & Share",
"version": "0.0.1", "version": "0.0.3",
"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",

View file

@ -1,12 +1,12 @@
{ {
"name": "obsidian-sample-plugin", "name": "obsidian-sample-plugin",
"version": "0.0.1", "version": "0.0.3",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "obsidian-sample-plugin", "name": "obsidian-sample-plugin",
"version": "0.0.1", "version": "0.0.3",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@types/node": "^16.11.6", "@types/node": "^16.11.6",

View file

@ -1,6 +1,6 @@
{ {
"name": "obsidian-sample-plugin", "name": "obsidian-sample-plugin",
"version": "0.0.1", "version": "0.0.3",
"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": {

View file

@ -1,4 +1,6 @@
{ {
"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.3": "0.0.0"
} }