We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f9f3512 + 33bc3c4 commit 8c6331fCopy full SHA for 8c6331f
2 files changed
.github/workflows/release-plugins.yml
@@ -33,8 +33,11 @@ jobs:
33
git tag "$tag"
34
git push origin "$tag"
35
36
+ (cd plugins/${plugin} && zip -r "../../${plugin}-v${version}.zip" . -x "public/*" "package.json")
37
+
38
gh release create "$tag" \
39
--title "$plugin v$version" \
40
--notes "Release $plugin v$version" \
- --target main
41
+ --target main \
42
+ "${plugin}-v${version}.zip"
43
done
.husky/pre-commit
@@ -1 +1 @@
1
-pnpm exec biome check --write --staged
+pnpm exec biome check --write --staged --no-errors-on-unmatched
0 commit comments