Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e49a901

Browse files
committedFeb 5, 2025·
retry
1 parent c964ecb commit e49a901

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎.github/workflows/release.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,15 @@ jobs:
4646
run: |
4747
set -euo pipefail
4848
echo -n "$APPLE_CERT" | base64 -d -o "$CERT_PATH"
49-
echo -n "$EXT_PROF" | base64 -d -o "$APP_PROF_PATH"
50-
echo -n "$APP_PROF" | base64 -d -o "EXT_PROF_PATH"
49+
echo -n "$APP_PROF" | base64 -d -o "$APP_PROF_PATH"
50+
echo -n "$EXT_PROF" | base64 -d -o "$EXT_PROF_PATH"
5151
set -x
5252
security create-keychain -p "" "$KEYCHAIN_PATH"
5353
security set-keychain-settings -lut 21600 "$KEYCHAIN_PATH"
5454
security unlock-keychain -p "" "$KEYCHAIN_PATH"
5555
security import "$CERT_PATH" -P "$CERT_PASSWORD" -A -t cert -f pkcs12 -k "$KEYCHAIN_PATH"
5656
security list-keychain -d user -s "$KEYCHAIN_PATH"
5757
58-
5958
- name: Build
6059
run: |
6160
make

0 commit comments

Comments
 (0)
Please sign in to comment.