Skip to content

Commit

Permalink
Use full path for api key
Browse files Browse the repository at this point in the history
  • Loading branch information
reyery committed Apr 12, 2024
1 parent 1d0047d commit 0e55275
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/setup_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,13 @@ jobs:
env:
APPLE_API_KEY_BASE64: ${{ secrets.APPLE_API_KEY_BASE64 }}
run: |
echo -n $APPLE_API_KEY_BASE64 | base64 -d -o ./api_key.p8
echo -n $APPLE_API_KEY_BASE64 | base64 -d -o $GITHUB_WORKSPACE/gui/api_key.p8
- name: Package CEA GUI
shell: bash
env:
APPLE_API_ISSUER: ${{ secrets.APPLE_API_ISSUER }}
APPLE_API_KEY: ./api_key.p8
APPLE_API_KEY: $GITHUB_WORKSPACE/gui/api_key.p8
APPLE_API_KEY_ID: ${{ secrets.APPLE_API_KEY_ID }}
CSC_LINK: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
CSC_KEY_PASSWORD: ${{ secrets.P12_PASSWORD }}
Expand Down

0 comments on commit 0e55275

Please sign in to comment.