Skip to content

ci: Add release workflow #41

ci: Add release workflow

ci: Add release workflow #41

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-android:
name: 'Build Android'
uses: ./.github/workflows/build-android.yml
secrets: inherit
build-ios:
name: 'Build iOS'
uses: ./.github/workflows/build-ios.yml
secrets: inherit
test:
name: 'Run UI Tests'
needs: build-android
uses: ./.github/workflows/test.yml