chore: github action attempt 3

This commit is contained in:
Dylan Armstrong 2025-04-04 09:44:00 +02:00
parent 6db6b56ddc
commit 4baa84b100
No known key found for this signature in database
GPG key ID: C574636C52BA5C5A
2 changed files with 6 additions and 2 deletions

View file

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

View file

@ -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 <dylan@dylan.is>",