Kick off test deployment #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy App Store | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- develop | |
- release* | |
- fastlane # Remove before merging | |
jobs: | |
deploy_appstore: | |
name: Deploy App Store | |
runs-on: macos-13 | |
steps: | |
- name: Install SSH key | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: | | |
${{ secrets.MATCH_SSH_PRIVATE_KEY }} | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Select required Xcode version | |
run: sudo xcode-select -switch /Applications/Xcode_15.0.0.app | |
- name: Deploy App Store | |
env: | |
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} | |
ITC_KEY_ID: ${{ secrets.APPSTORE_KEY_ID }} | |
ITC_ISSUER_ID: ${{ secrets.APPSTORE_ISSUER_ID }} | |
ITC_KEY: ${{ secrets.APPSTORE_PRIVATE_KEY }} | |
run: | | |
bundle install | |
bundle exec fastlane ios deploy_appstore |