Skip to content

Commit

Permalink
Try to find workspace location.
Browse files Browse the repository at this point in the history
  • Loading branch information
jigar-f committed Jun 12, 2024
1 parent 89b49f7 commit a11ccd6
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,13 @@ jobs:
prefix: ${{ inputs.prefix }}
AC_USERNAME: [email protected]
AC_PASSWORD: ${{ secrets.AC_PASSWORD }}

steps:
- name: Working directory
run: |
echo ${{ github.workspace }}
echo $GITHUB_WORKSPACE
- uses: actions/checkout@v3
with:
lfs: true
Expand Down Expand Up @@ -86,6 +92,7 @@ jobs:
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db
EXPORT_OPTIONS_PATH=$GITHUB_WORKSPACE/ExportOptions.plist
# import certificate from secrets
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH
Expand Down Expand Up @@ -144,14 +151,14 @@ jobs:
- name: Upload application
uses: actions/upload-artifact@v3
with:
name: Lantern-iOS
name: iOS
path: $GITHUB_WORKSPACE/build/ios/ipa/
retention-days: 1

- name: 'Upload Lantern to TestFlight'
uses: apple-actions/upload-testflight-build@v1
with:
app-path: $GITHUB_WORKSPACE/build/ios/ipa/Lantern.ipa
app-path: ./build/ios/ipa/Lantern.ipa
issuer-id: ${{ secrets.APPSTORE_ISSUER_ID }}
api-key-id: ${{ secrets.APPSTORE_API_KEY_ID }}
api-private-key: ${{ secrets.APPSTORE_API_PRIVATE_KEY }}

0 comments on commit a11ccd6

Please sign in to comment.