Skip to content

Commit

Permalink
Merge pull request #7 from Certora/oz/fix-release-path
Browse files Browse the repository at this point in the history
Fix release
  • Loading branch information
ozcodes authored Dec 15, 2024
2 parents 1c4d2b7 + d7b25e1 commit 59cacf3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,11 @@ jobs:
run: |
release_exist=$(gh release view $TAG 2>&1 || exit 0)
if [ "$release_exist" = "release not found" ]; then
gh release create $TAG platform-tools-osx-aarch64/platform-tools-osx-aarch64.tar.bz2 --title "Release $TAG" --generate-notes --latest
gh release upload $TAG platform-tools-osx-x86_64/platform-tools-osx-x86_64.tar.bz2
gh release upload $TAG platform-tools-linux-x86_64/platform-tools-linux-x86_64.tar.bz2
gh release create $TAG certora-solana-platform-tools/platform-tools-osx-aarch64.tar.bz2 --title "Release $TAG" --generate-notes --latest
gh release upload $TAG certora-solana-platform-tools/platform-tools-osx-x86_64.tar.bz2
gh release upload $TAG certora-solana-platform-tools/platform-tools-linux-x86_64.tar.bz2
else
gh release upload $TAG platform-tools-osx-aarch64/platform-tools-osx-aarch64.tar.bz2
gh release upload $TAG platform-tools-osx-x86_64/platform-tools-osx-x86_64.tar.bz2
gh release upload $TAG platform-tools-linux-x86_64/platform-tools-linux-x86_64.tar.bz2
gh release upload $TAG certora-solana-platform-tools/platform-tools-osx-aarch64.tar.bz2
gh release upload $TAG certora-solana-platform-tools/platform-tools-osx-x86_64.tar.bz2
gh release upload $TAG certora-solana-platform-tools/platform-tools-linux-x86_64.tar.bz2
fi

0 comments on commit 59cacf3

Please sign in to comment.