Skip to content

Commit

Permalink
Here we go again
Browse files Browse the repository at this point in the history
  • Loading branch information
bkacjios committed Jan 3, 2025
1 parent 7d11082 commit 1047d66
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ jobs:
run: |
ZIP_FILE="release-gcc.zip"
if [ -f "$ZIP_FILE" ]; then # Check if the zip file was created
echo "Uploading $ZIP_FILE to release ${{ needs.create_release.outputs.release_tag }}"
gh release upload ${{ needs.create_release.outputs.release_tag }} $ZIP_FILE --clobber # Upload the zip file to the single release
echo "Uploading $ZIP_FILE to release $RELEASE_TAG"
gh release upload $RELEASE_TAG $ZIP_FILE --clobber # Upload the zip file to the single release
else
echo "Error: $ZIP_FILE does not exist."
exit 1
Expand All @@ -125,8 +125,8 @@ jobs:
run: |
ZIP_FILE="release-clang.zip"
if [ -f "$ZIP_FILE" ]; then # Check if the zip file was created
echo "Uploading $ZIP_FILE to release ${{ needs.create_release.outputs.release_tag }}"
gh release upload ${{ needs.create_release.outputs.release_tag }} $ZIP_FILE --clobber # Upload the zip file to the single release
echo "Uploading $ZIP_FILE to release $RELEASE_TAG"
gh release upload $RELEASE_TAG $ZIP_FILE --clobber # Upload the zip file to the single release
else
echo "Error: $ZIP_FILE does not exist."
exit 1
Expand Down

0 comments on commit 1047d66

Please sign in to comment.