Skip to content

Commit

Permalink
Fix: release workflow to zip only dist contents
Browse files Browse the repository at this point in the history
  • Loading branch information
amasin76 committed Sep 18, 2023
1 parent 79c2017 commit ff3e7ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:

- name: Create Zip
run: |
zip -r ${{ github.event.repository.name }}-${{ github.ref_name }}.zip dist/*
cd dist
zip -r ../${{ github.event.repository.name }}-${{ github.ref_name }}.zip .
- name: Generate SHA256
id: sha
Expand Down

0 comments on commit ff3e7ed

Please sign in to comment.