Skip to content

Added a Github action to deploy to TestFlight #1

Added a Github action to deploy to TestFlight

Added a Github action to deploy to TestFlight #1

on:

Check failure on line 1 in .github/workflows/deploy-to-testflight.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy-to-testflight.yml

Invalid workflow file

`fastlane-deploy` is not a valid event name
# 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}}