Skip to content

Commit

Permalink
fix contest package zip
Browse files Browse the repository at this point in the history
  • Loading branch information
verwoerd committed Oct 21, 2024
1 parent 48919bf commit e83c320
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/make_logos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,12 @@ jobs:
- name: Zip logos
run: cd ${{ github.workspace }}/out; for i in */; do zip -r "${i%/}.zip" "$i"; done; cd ${{ github.workspace }}
- name: Zip contest package
run: cd ${{ github.workspace }}/out; zip -r contest-package.zip contest-package/ cd ${{ github.workspace }}
run: |
cd ${{ github.workspace }}/out
rm contest-package.zip
cd contest-package
zip -r ../contest-package.zip contest-package
cd ${{ github.workspace }}
- uses: actions/upload-artifact@v4
if: github.ref != 'refs/heads/main'
with:
Expand Down

0 comments on commit e83c320

Please sign in to comment.