From 8985048453d11c4a812aa2753ba1311b12c3d34e Mon Sep 17 00:00:00 2001 From: Rigidity Date: Fri, 20 Sep 2024 14:20:23 -0400 Subject: [PATCH] github.workspace --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4680a394..addd19e7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 }} @@ -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.