Skip to content

Commit

Permalink
Add missing zipping
Browse files Browse the repository at this point in the history
  • Loading branch information
ghorsington committed Jul 3, 2022
1 parent 6e035b7 commit 7438761
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ jobs:
id: collect-info
run: |
mkdir release
find artifacts -name "*.zip" -exec mv {} release \;
cd artifacts
for i in */; do (cd "${i%/}" && zip -0 -r "../../release/${i%/}.zip" *) & done; wait
echo "::set-output name=release_tag::$(date +%Y%m%d).$GITHUB_RUN_NUMBER"
- name: Create release
uses: marvinpinto/action-automatic-releases@latest
Expand Down

0 comments on commit 7438761

Please sign in to comment.