Skip to content

Commit d94a748

Browse files
authored
Fix release script. (#4604)
* Fix release script. * Macos release - sign binaries.
1 parent 2f70448 commit d94a748

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/release.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ jobs:
134134
)
135135
for b in "${binaries[@]}"; do
136136
if [[ -f "$b" ]]; then
137+
/usr/bin/codesign --force --options runtime -s ${IDENTITY_ID} "$b" -v
137138
7z a "slang-macos-dist.zip" "$b"
138139
fi
139140
done
@@ -174,7 +175,3 @@ jobs:
174175
${{ steps.notarize.outputs.SLANG_NOTARIZED_DIST }}
175176
env:
176177
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
177-
178-
- name: Notarize
179-
run : |
180-
timeout 1000 gon ./extras/macos-notarize.json

0 commit comments

Comments
 (0)