Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:
run: npm run lint

- name: Create lib archive
run: zip -r lib.zip lib *.md LICENSE SECURITY.md package.json package-lock.json \
-x 'lib/test/*' 'lib/src/*'
run: |
zip -r lib.zip lib *.md LICENSE SECURITY.md package.json package-lock.json -x 'lib/test/*' 'lib/src/*'

- name: Upload production artifacts
run: |
gh release upload $TAG_NAME "lib.zip#release"
gh release upload $TAG_NAME "lib.zip"
gh release edit $TAG_NAME --draft=false
env:
TAG_NAME: ${{ github.event.release.tag_name }}
Loading