Skip to content

Commit f57a573

Browse files
committed
fix: use .zip for Apple notarization (notarytool rejects .tar.gz)
Made-with: Cursor
1 parent 1cc2ea1 commit f57a573

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/build-turboquant-macos.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,10 @@ jobs:
129129
find build -name "*.dylib" -exec cp {} release/build/bin/ \; 2>/dev/null || true
130130
find build -name "*.metal" -path "*/bin/*" -exec cp {} release/build/bin/ \; 2>/dev/null || true
131131
cd release
132+
zip -r ../llama-turboquant-macos-arm64.zip .
132133
tar -czf ../llama-turboquant-macos-arm64.tar.gz .
133134
cd ..
134-
ls -lh llama-turboquant-macos-arm64.tar.gz
135+
ls -lh llama-turboquant-macos-arm64.zip llama-turboquant-macos-arm64.tar.gz
135136
136137
- name: Notarize release archive
137138
env:
@@ -140,7 +141,7 @@ jobs:
140141
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
141142
run: |
142143
echo "Submitting for notarization..."
143-
xcrun notarytool submit llama-turboquant-macos-arm64.tar.gz \
144+
xcrun notarytool submit llama-turboquant-macos-arm64.zip \
144145
--apple-id "$APPLE_ID" \
145146
--password "$APPLE_ID_PASSWORD" \
146147
--team-id "$APPLE_TEAM_ID" \

0 commit comments

Comments
 (0)