Skip to content

Merge remote-tracking branch 'refs/remotes/origin/main' #26

Merge remote-tracking branch 'refs/remotes/origin/main'

Merge remote-tracking branch 'refs/remotes/origin/main' #26

Workflow file for this run

name: Fastlane Workflow
on:
push:
branches: [ main ]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Release MacOS app with Fastlane
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0.0'
- name: Execute Fastlane Action
uses: maierj/fastlane-action@v2.2.0
with:
lane: 'release'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}