Skip to content

Commit

Permalink
ci: fix build assets
Browse files Browse the repository at this point in the history
  • Loading branch information
chenasraf committed Dec 2, 2023
1 parent fed6f60 commit 9562f2d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:
run: pnpm test
- name: Build Package
run: pnpm build
- name: Pack
run: cd ./build && pnpm pack --pack-destination=../
# - name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
# run: npm audit signatures
- name: Semantic Release
Expand Down
7 changes: 6 additions & 1 deletion release.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ module.exports = {
[
'@semantic-release/github',
{
assets: [{ path: 'build', label: 'Package Bundle' }],
assets: [
{
path: '*.tgz',
name: 'massarg.tgz',
},
],
},
],
[
Expand Down

0 comments on commit 9562f2d

Please sign in to comment.