Skip to content

Commit

Permalink
Another fix in macos release script. (#4603)
Browse files Browse the repository at this point in the history
* Another fix in macos release script.

* Fix.
  • Loading branch information
csyonghe authored Jul 11, 2024
1 parent c585278 commit 2f70448
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,11 @@ jobs:
)
for b in "${binaries[@]}"; do
if [[ -f "$b" ]]; then
7z a "slang-macos-dist.zip" "${existing_files[@]}"
7z a "slang-macos-dist.zip" "$b"
fi
done
timeout 1000 gon ./extras/macos-notarize.json
cp slang-macos-dist.zip "slang-macos-dist-${{matrix.platform}}.zip"
echo "SLANG_NOTARIZED_DIST=slang-macos-dist-${{matrix.platform}}.zip" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -175,3 +174,7 @@ 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 2f70448

Please sign in to comment.