Skip to content

Commit

Permalink
First try with Fastlane
Browse files Browse the repository at this point in the history
  • Loading branch information
KatherineInCode committed Apr 17, 2024
1 parent b8f6e89 commit 91b1131
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ jobs:
- name: Install Mint, xcbeautify, and yq
run: |
brew install mint xcbeautify yq
brew install mint xcbeautify yq fastlane
- name: Install Mint packages
if: steps.mint-cache.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -258,14 +258,21 @@ jobs:
--file "build/Bitwarden/Bitwarden.ipa" \
--username "$APPLE_ID_USERNAME" \
--password @env:APPLE_ID_PASSWORD
- name: Upload app to TestFlight
- name: Upload app to TestFlight with Fastlane
env:
APPLE_ID_USERNAME: ${{ secrets.APPLE_ID_USERNAME }}
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
run: |
xcrun altool --upload-app \
--type ios \
--file "build/Bitwarden/Bitwarden.ipa" \
--username "$APPLE_ID_USERNAME" \
--password @env:APPLE_ID_PASSWORD
fastlane pilot upload --skip_submission --changelog "Test"
# - name: Upload app to TestFlight
# env:
# APPLE_ID_USERNAME: ${{ secrets.APPLE_ID_USERNAME }}
# APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
# run: |
# xcrun altool --upload-app \
# --type ios \
# --file "build/Bitwarden/Bitwarden.ipa" \
# --username "$APPLE_ID_USERNAME" \
# --password @env:APPLE_ID_PASSWORD

0 comments on commit 91b1131

Please sign in to comment.