Skip to content

Commit fe822e4

Browse files
committed
fix workflow
1 parent c693619 commit fe822e4

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,12 @@ jobs:
127127
128128
- name: Notarize the app
129129
env:
130-
APPLE_API_KEY: ${{ secrets.APPLE_API_KEY }}
131130
APPLE_API_KEY_ID: ${{ secrets.APPLE_API_KEY_ID }}
132131
APPLE_API_ISSUER: ${{ secrets.APPLE_API_ISSUER }}
133132
run: |
134-
echo "$APPLE_API_KEY" > apple.p8
133+
cat << 'EOF' > apple.p8
134+
${{ secrets.APPLE_API_KEY }}
135+
EOF
135136
ditto -c -k --keepParent Equilotl.app Equilotl-notarize.zip
136137
xcrun notarytool submit Equilotl-notarize.zip --key apple.p8 --key-id "$APPLE_API_KEY_ID" --issuer "$APPLE_API_ISSUER" --wait
137138
xcrun stapler staple Equilotl.app

0 commit comments

Comments
 (0)