Skip to content

Commit

Permalink
[CI] Fix upload action.
Browse files Browse the repository at this point in the history
  • Loading branch information
bruvzg committed Jul 18, 2024
1 parent a46efbb commit c2b257a
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 @@ -167,12 +167,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-nir-static*"
artifacts: "*.zip"
artifactErrorsFailBuild: true

0 comments on commit c2b257a

Please sign in to comment.