Skip to content

Commit 8c6331f

Browse files
Merge pull request #16 from browneyedsoul/develop
fix(ci): attach plugin zip to release asset
2 parents f9f3512 + 33bc3c4 commit 8c6331f

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/release-plugins.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,11 @@ jobs:
3333
git tag "$tag"
3434
git push origin "$tag"
3535
36+
(cd plugins/${plugin} && zip -r "../../${plugin}-v${version}.zip" . -x "public/*" "package.json")
37+
3638
gh release create "$tag" \
3739
--title "$plugin v$version" \
3840
--notes "Release $plugin v$version" \
39-
--target main
41+
--target main \
42+
"${plugin}-v${version}.zip"
4043
done

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pnpm exec biome check --write --staged
1+
pnpm exec biome check --write --staged --no-errors-on-unmatched

0 commit comments

Comments
 (0)