Skip to content

Commit

Permalink
Merge pull request #9 from bruvzg/ci_upload_fix
Browse files Browse the repository at this point in the history
[CI] Fix upload action.
  • Loading branch information
bruvzg authored Jul 19, 2024
2 parents e88ce47 + 26b3c97 commit 03ec7c9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -242,12 +242,16 @@ jobs:
- name: Download Artifacts
uses: actions/download-artifact@v4

- name: ZIP Artifacts
run: |
for i in */; do (cd "${i%/}"; zip -r "../${i%/}.zip" .; cd ..); done
- name: Create Release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
removeArtifacts: true
omitNameDuringUpdate: true
omitBodyDuringUpdate: true
artifacts: "godot-angle-static*"
artifacts: "*.zip"
artifactErrorsFailBuild: true

0 comments on commit 03ec7c9

Please sign in to comment.