diff --git a/.github/workflows/build_ios.yaml b/.github/workflows/build_ios.yaml index 10b16e8..34db423 100644 --- a/.github/workflows/build_ios.yaml +++ b/.github/workflows/build_ios.yaml @@ -83,7 +83,7 @@ jobs: if: inputs.upload && github.event_name != 'pull_request' run: | keyLocation=${{ github.workspace }}/${{ inputs.appDirectory }}/ios/apple_api_key.json - printf "${{ secrets.apiKey }}" > $keyLocation + printf '%s' '${{ secrets.apiKey }}' > $keyLocation echo IOS_API_KEY=$keyLocation >> $GITHUB_ENV - name: Upload to Testflight if: inputs.upload && github.event_name != 'pull_request'