Skip to content

4.80.0 Release

4.80.0 Release #43

Workflow file for this run

name: Test Flight Deploy DemoApp
on:
pull_request:
branches:
- 'main'
release:
types: [published]
workflow_dispatch:
inputs:
release:
description: 'Build configuration'
required: true
default: 'Debug'
type: choice
options:
- Debug
- Release
env:
HOMEBREW_NO_INSTALL_CLEANUP: 1
jobs:
deploy:
runs-on: macos-15
steps:
- name: Connect Bot
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }}
- uses: actions/[email protected]
with:
fetch-depth: 0
- uses: ./.github/actions/ruby-cache
- uses: ./.github/actions/xcode-cache
- name: Deploy Demo app
env:
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
APPSTORE_API_KEY: ${{ secrets.APPSTORE_API_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_PR_NUM: ${{ github.event.number }}
run: bundle exec fastlane swiftui_testflight_build configuration:"${{ github.event.inputs.release }}"
- uses: 8398a7/action-slack@v3
with:
status: ${{ job.status }}
text: "You shall not pass!"
fields: repo,commit,author,workflow
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
if: failure()