Skip to content

Commit

Permalink
fix: artifacts dest
Browse files Browse the repository at this point in the history
  • Loading branch information
kamikazechaser committed Feb 22, 2024
1 parent c700471 commit 063c9c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
run: |
for file in dist/*; do
if [ -f "$file" ]; then
zip -r "$file.zip" "$file"
zip -r "$file.zip" "$file" LICENSE
fi
done
- name: Release
uses: ncipollo/release-action@v1
with:
artifacts: "dist/*.zip"
artifacts: "build/*.zip"
generateReleaseNotes: true

0 comments on commit 063c9c1

Please sign in to comment.