Skip to content

Added a Github action to deploy to TestFlight #4

Added a Github action to deploy to TestFlight

Added a Github action to deploy to TestFlight #4

on:
pull_request:
# The specific activity types are listed here to include "labeled" and "unlabeled"
# (which are not included by default for the "pull_request" trigger).
# This is needed to allow skipping enforcement of the changelog in PRs with specific labels,
# as defined in the (optional) "skipLabels" property.
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]
# Enable manual run
workflow_dispatch:
jobs:
fastlane-deploy:
runs-on: macOS-13
steps:
- name: Checkout
uses: actions/checkout@main
- uses: nomasystems/[email protected]
- name: Deploy with fastlane
run: |
bundle install
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}}