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.
1 parent fed6f60 commit 9562f2dCopy full SHA for 9562f2d
2 files changed
.github/workflows/main.yml
@@ -34,6 +34,8 @@ jobs:
34
run: pnpm test
35
- name: Build Package
36
run: pnpm build
37
+ - name: Pack
38
+ run: cd ./build && pnpm pack --pack-destination=../
39
# - name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
40
# run: npm audit signatures
41
- name: Semantic Release
release.config.cjs
@@ -23,7 +23,12 @@ module.exports = {
23
[
24
'@semantic-release/github',
25
{
26
- assets: [{ path: 'build', label: 'Package Bundle' }],
+ assets: [
27
+ {
28
+ path: '*.tgz',
29
+ name: 'massarg.tgz',
30
+ },
31
+ ],
32
},
33
],
0 commit comments