Skip to content

Commit

Permalink
Fix release script. (#4604)
Browse files Browse the repository at this point in the history
* Fix release script.

* Macos release - sign binaries.
  • Loading branch information
csyonghe authored Jul 11, 2024
1 parent 2f70448 commit d94a748
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ jobs:
)
for b in "${binaries[@]}"; do
if [[ -f "$b" ]]; then
/usr/bin/codesign --force --options runtime -s ${IDENTITY_ID} "$b" -v
7z a "slang-macos-dist.zip" "$b"
fi
done
Expand Down Expand Up @@ -174,7 +175,3 @@ jobs:
${{ steps.notarize.outputs.SLANG_NOTARIZED_DIST }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Notarize
run : |
timeout 1000 gon ./extras/macos-notarize.json

0 comments on commit d94a748

Please sign in to comment.