1.5.0 #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Android and iOS | ||
on: | ||
push: | ||
tags: | ||
- '**' | ||
workflow_dispatch: | ||
jobs: | ||
meta: | ||
Check failure on line 9 in .github/workflows/deploy.yml GitHub Actions / Deploy Android and iOSInvalid workflow file
|
||
name: Metadata | ||
uses: ./.github/workflows/create-release-from-tag.yml | ||
permissions: | ||
contents: read | ||
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 |