test_deploy #6
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: Multi-Stage Deployment | ||
on: | ||
repository_dispatch: | ||
types: [test_deploy] | ||
concurrency: | ||
group: ci-test_deploy-runner | ||
cancel-in-progress: true | ||
jobs: | ||
mono-glue: | ||
name: Building Mono Glue for Mono Editor Builds | ||
uses: ./.github/workflows/monoglue.yaml | ||
linux: | ||
name: Building Linux Editors | ||
uses: ./.github/workflows/linux-build.yaml | ||
Check failure on line 16 in .github/workflows/full-deploy.yaml GitHub Actions / Multi-Stage DeploymentInvalid workflow file
|
||
with: | ||
MONO: 0 | ||
linux-mono: | ||
needs: mono-glue | ||
name: Building Linux Editors/w Mono | ||
uses: ./.github/workflows/linux-build.yaml | ||
with: | ||
MONO: 1 |