Skip to content

Commit

Permalink
ci: fix base64: invalid argument /Users/runner/AuthKey.p8.base64
Browse files Browse the repository at this point in the history
  • Loading branch information
zetavg committed Aug 2, 2024
1 parent da8ebf4 commit 30927ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ jobs:
echo "MARKETING_VERSION = 0.1.2" >> App/ios/config.xcconfig
echo "CURRENT_PROJECT_VERSION = 10" >> App/ios/config.xcconfig
echo "${{ secrets.AUTHKEY_P8_BASE64 }}" > ~/AuthKey.p8.base64
base64 --decode ~/AuthKey.p8.base64 > ~/AuthKey.p8
base64 --decode --input ~/AuthKey.p8.base64 > ~/AuthKey.p8
- name: Cache Pods
uses: actions/cache@v3
env:
Expand Down Expand Up @@ -452,7 +452,7 @@ jobs:
echo "MARKETING_VERSION = 0.1.2" >> App/ios/config.xcconfig
echo "CURRENT_PROJECT_VERSION = 10" >> App/ios/config.xcconfig
echo "${{ secrets.AUTHKEY_P8_BASE64 }}" > ~/AuthKey.p8.base64
base64 --decode ~/AuthKey.p8.base64 > ~/AuthKey.p8
base64 --decode --input ~/AuthKey.p8.base64 > ~/AuthKey.p8
- name: Cache Pods
uses: actions/cache@v3
env:
Expand Down

0 comments on commit 30927ac

Please sign in to comment.