Skip to content

Make separate app identifiers and names based on release channel #47

Make separate app identifiers and names based on release channel

Make separate app identifiers and names based on release channel #47

Workflow file for this run

name: Build (Automatic)
on:
push:
branches:
- master
- beta
- release
jobs:
build:
uses: ./.github/workflows/build-local.yml
secrets: inherit
with:
releaseChannel: ${{ github.ref == 'refs/heads/release' && 'release' || (github.ref == 'refs/heads/beta' && 'beta' || 'alpha' ) }}