From c39323c3fa4f2b649ed1cea425836c6cc2815374 Mon Sep 17 00:00:00 2001 From: Jiaxin Peng Date: Tue, 29 Aug 2023 14:29:42 +0100 Subject: [PATCH] Update version to 0.1.3 --- .github/workflows/release.yml | 2 +- manifest.json | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9035c01..aa11d95 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: npm install npm run build mkdir ${{ env.PLUGIN_NAME }} - cp src/main.js manifest.json ${{ env.PLUGIN_NAME }} + cp main.js manifest.json ${{ env.PLUGIN_NAME }} zip -r ${{ env.PLUGIN_NAME }}.zip ${{ env.PLUGIN_NAME }} ls echo "::set-output name=tag_name::$(git tag --sort version:refname | tail -n 1)" diff --git a/manifest.json b/manifest.json index ae9e3ac..4a5547c 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "share-to-notionnext", "name": "Share to NotionNext", - "version": "0.1.2", + "version": "0.1.3", "minAppVersion": "0.0.1", "description": "Shares obsidian md file to notion with notion api for NotionNext web deploy, motivated by EasyChris/obsidian-to-notion.", "author": "EasyChris, jxpeng98", diff --git a/package.json b/package.json index a45a73b..46cc26d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "share-to-notionnext", - "version": "0.1.2", + "version": "0.1.3", "type": "module", "description": "Shares obsidian md file to notion with notion api for NotionNext web deploy, motivated by EasyChris/obsidian-to-notion.", "main": "main.js",