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 706bb54 commit 5479777Copy full SHA for 5479777
1 file changed
.github/workflows/release.yml
@@ -37,14 +37,13 @@ jobs:
37
- name: Lint
38
run: npm run lint
39
40
- - name: Create release archive
41
- run: |
42
- zip -r release.zip lib *.md LICENSE SECURITY.md package.json package-lock.json \
+ - name: Create lib archive
+ run: zip -r lib.zip lib *.md LICENSE SECURITY.md package.json package-lock.json \
43
-x 'lib/test/*' 'lib/src/*'
44
45
- name: Upload production artifacts
46
run: |
47
- gh release upload $TAG_NAME "release.zip#release"
+ gh release upload $TAG_NAME "lib.zip#release"
48
gh release edit $TAG_NAME --draft=false
49
env:
50
TAG_NAME: ${{ github.event.release.tag_name }}
0 commit comments