Skip to content

Commit

Permalink
Fix TestFlight part of release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
saagarjha committed Feb 24, 2024
1 parent 2ef41fe commit 498f3ea
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,10 @@ jobs:

- name: Send to TestFlight
env:
AUTHENTICATION_KEY=/tmp/AuthKey.p8
AUTHENTICATION_KEY_ID=${{ secrets.AUTHENTICATION_KEY_ID }}
AUTHENTICATION_KEY_ISSUER_ID=${{ secrets.AUTHENTICATION_KEY_ISSUER_ID }}
run: Release/send_to_testflight.sh
AUTHENTICATION_KEY: /tmp/AuthKey.p8
AUTHENTICATION_KEY_ID: ${{ secrets.AUTHENTICATION_KEY_ID }}
AUTHENTICATION_KEY_ISSUER_ID: ${{ secrets.AUTHENTICATION_KEY_ISSUER_ID }}
run: |
version="$(cat Configs/Deployment.xcconfig | grep CURRENT_PROJECT_VERSION | awk '{ print $3 }')"
Release/send_to_testflight.sh "$version"

0 comments on commit 498f3ea

Please sign in to comment.