Skip to content

Commit

Permalink
github.workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
Rigidity committed Sep 20, 2024
1 parent 9cb7009 commit 8985048
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
run: pnpm install

- name: Save API key to file
run: 'echo "$APPLE_API_SECRET_KEY" > apple-api-key.p8'
run: 'echo "$APPLE_API_SECRET_KEY" > ${{ github.workspace }}/apple-api-key.p8'
shell: bash
env:
APPLE_API_KEY: ${{ secrets.APPLE_API_SECRET_KEY }}
Expand All @@ -66,7 +66,7 @@ jobs:
APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
APPLE_API_ISSUER: ${{ secrets.APPLE_API_ISSUER }}
APPLE_API_KEY: ${{ secrets.APPLE_API_KEY_ID }}
APPLE_API_KEY_PATH: ./apple-api-key.p8
APPLE_API_KEY_PATH: ${{ github.workspace }}/apple-api-key.p8
CI: true
with:
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version.
Expand Down

0 comments on commit 8985048

Please sign in to comment.