Added a Github action to deploy to TestFlight #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
on: | ||
# Enable manual run | ||
workflow_dispatch: | ||
inputs: | ||
lane: | ||
description: "Fastlane lane" | ||
required: true | ||
default: "beta" | ||
type: choice | ||
options: | ||
- beta | ||
fastlane-deploy: | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@main | ||
- uses: nomasystems/[email protected] | ||
- name: Deploy with fastlane | ||
run: bundle exec fastlane beta | ||
env: | ||
APP_STORE_CONNECT_API_KEY_CONTENT: ${{Secrets. APP_STORE_CONNECT_API_KEY_CONTENT}} | ||
APP_STORE_CONNECT_ISSUER_ID: ${{Secrets. APP_STORE_CONNECT_ISSUER_ID}} | ||
APP_STORE_CONNECT_API_KEY_ID: ${{Secrets. APP_STORE_CONNECT_API_KEY_ID}} |