Skip to content

Commit

Permalink
chore: fix for zip release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
teebszet committed Jun 29, 2023
1 parent 3d39518 commit ac26726
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js
- name: Use Node.js
uses: actions/setup-node@v3
with:
always-auth: true
Expand All @@ -27,9 +27,9 @@ jobs:
# - name: Test
# run: npm test --passWithNoTests
- name: Create Archive
run: zip -r xverse-extension-${{ github.ref_name }}.zip build
run: zip -r xverse-extension-${{ github.ref_name }}.zip . -i build
- name: Upload Archive
uses: actions/upload-artifact@v3
with:
name: release-build
path: xverse-extension-${{ github.ref_name }}.zip
path: xverse-extension-${{ github.ref_name }}.zip

0 comments on commit ac26726

Please sign in to comment.