Skip to content

Commit 2f70448

Browse files
authored
Another fix in macos release script. (#4603)
* Another fix in macos release script. * Fix.
1 parent c585278 commit 2f70448

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/release.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,11 @@ jobs:
134134
)
135135
for b in "${binaries[@]}"; do
136136
if [[ -f "$b" ]]; then
137-
7z a "slang-macos-dist.zip" "${existing_files[@]}"
137+
7z a "slang-macos-dist.zip" "$b"
138138
fi
139139
done
140140
141141
timeout 1000 gon ./extras/macos-notarize.json
142-
143142
cp slang-macos-dist.zip "slang-macos-dist-${{matrix.platform}}.zip"
144143
echo "SLANG_NOTARIZED_DIST=slang-macos-dist-${{matrix.platform}}.zip" >> $GITHUB_OUTPUT
145144
@@ -175,3 +174,7 @@ jobs:
175174
${{ steps.notarize.outputs.SLANG_NOTARIZED_DIST }}
176175
env:
177176
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
177+
178+
- name: Notarize
179+
run : |
180+
timeout 1000 gon ./extras/macos-notarize.json

0 commit comments

Comments
 (0)