Skip to content

Commit

Permalink
Merge pull request #214 from Yamato-Security/213-win-release-zip-extr…
Browse files Browse the repository at this point in the history
…action

fix: win release zip folder level
  • Loading branch information
YamatoSecurity authored Nov 9, 2024
2 parents 2732c09 + 8a3cf90 commit c82c9ea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,9 @@ jobs:
ls -lR all-packages
cd all-packages
for dir in */; do
zip -r "${dir%/}.zip" "$dir"
cd "$dir"
zip -r "../${dir%/}.zip" *
cd ..
done
- name: Upload Zip Artifacts(all-packages)
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit c82c9ea

Please sign in to comment.