diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a2486a9..e5f6c00 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,6 +24,10 @@ jobs: pnpm install pnpm run build + - name: Zip + run: | + zip obsidian-prettier-plugin.zip main.js manifest.json styles.css + - name: Create release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -33,4 +37,4 @@ jobs: gh release create "$tag" \ --title="$tag" \ --draft \ - main.js manifest.json styles.css + obsidian-prettier-plugin.zip main.js manifest.json styles.css diff --git a/manifest.json b/manifest.json index ec26e06..1b7e8fa 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-prettier-plugin", "name": "Format with Prettier", - "version": "0.1.1", + "version": "0.1.2", "minAppVersion": "0.15.0", "description": "Format files with prettier", "author": "Dylan Armstrong ",