We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acf91a7 commit 3140538Copy full SHA for 3140538
.github/workflows/build.yml
@@ -36,9 +36,8 @@ jobs:
36
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
37
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
38
run: |
39
- # Write certificate to file
40
- echo "$MACOS_CERTIFICATE" > certificate.txt
41
- base64 --decode certificate.txt > certificate.p12
+ # Write certificate to file and decode it
+ echo "$MACOS_CERTIFICATE" | base64 -D > certificate.p12
42
43
# Create keychain
44
security create-keychain -p "$KEYCHAIN_PASSWORD" build.keychain
0 commit comments