diff options
| author | Yong He <yonghe@outlook.com> | 2024-07-10 18:16:38 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-10 18:16:38 -0700 |
| commit | d94a74814711203d6ce063d1744ddbce8d2ae74c (patch) | |
| tree | 6f444ae5342bab18c426541b57976e7b145b117d /.github/workflows | |
| parent | 2f70448a693cc88e83a83569dcf86be735fc60b3 (diff) | |
Fix release script. (#4604)
* Fix release script.
* Macos release - sign binaries.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/release.yml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cd5d79836..5fab3f471 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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 |
