Skip to content

docs: Make the download text standout more #94

docs: Make the download text standout more

docs: Make the download text standout more #94

Workflow file for this run

name: CI/CD
on:
push:
branches:
- main
- staging
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build & Release
runs-on: macos-15
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
bundler-cache: true
- name: Fastlane Build - Beta
if: github.ref == 'refs/heads/staging'
uses: maierj/[email protected]
with:
lane: 'beta'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Fastlane Build - Production
if: github.ref == 'refs/heads/main'
uses: maierj/[email protected]
with:
lane: 'production'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}