Skip to content

updated README.md

updated README.md #53

Workflow file for this run

name: Fastlane Workflow

Check failure on line 1 in .github/workflows/macos-build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/macos-build.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: build
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: '2.6.10'
- name: Execute Fastlane Action
uses: maierj/fastlane-action@v2.2.0
with:
lane: 'release'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}