Skip to content

Deploy Android and iOS #16

Deploy Android and iOS

Deploy Android and iOS #16

Workflow file for this run

name: Deploy Android and iOS
on:
push:
tags:
- '**'
workflow_dispatch:
jobs:
meta:
name: Metadata
uses: ./.github/workflows/create-release-from-tag.yml
permissions:
contents: write
android:
name: Android
needs: meta
uses: ./.github/workflows/deploy-android.yml
secrets: inherit
ios:
name: iOS
needs: meta
uses: ./.github/workflows/deploy-ios.yml
secrets: inherit
concurrency:
group: conc_grp_deployments
cancel-in-progress: true