Skip to content

trigger_build

trigger_build #4

Workflow file for this run

name: πŸ”— GHA
on:
schedule:
- cron: '0 0 * * *' # https://crontab.guru/#0_0_*_*_*
repository_dispatch:
types: [trigger_build]
concurrency:
group: ci-${{github.actor}}-nightly-runner
cancel-in-progress: true
jobs:
static-checks:
name: πŸ“Š Static checks
uses: ./.github/workflows/static_checks.yml
android-build:
name: πŸ€– Android
needs: static-checks
uses: ./.github/workflows/android_builds.yml

Check failure on line 21 in .github/workflows/runner.yml

View workflow run for this annotation

GitHub Actions / πŸ”— GHA

Invalid workflow file

The workflow is not valid. In .github/workflows/runner.yml (Line: 21, Col: 11): Error from called workflow blazium-engine/ci_cd/.github/workflows/android_builds.yml@daa0f41537a92aa5cba952d8a65576972d06ed45 (Line: 25, Col: 19): Unrecognized named-value: 'env'. Located at position 1 within expression: env.BUILD_FLAG In .github/workflows/runner.yml (Line: 21, Col: 11): Error from called workflow blazium-engine/ci_cd/.github/workflows/android_builds.yml@daa0f41537a92aa5cba952d8a65576972d06ed45 (Line: 29, Col: 25): Unrecognized named-value: 'env'. Located at position 1 within expression: env.BUILD_FLAG
ios-build:
name: 🍏 iOS
needs: [static-checks, android-build]
uses: ./.github/workflows/ios_builds.yml
linux-build:
name: 🐧 Linux
needs: [static-checks, android-build]
uses: ./.github/workflows/linux_builds.yml
macos-build:
name: 🍎 macOS
needs: [static-checks, android-build]
uses: ./.github/workflows/macos_builds.yml
windows-build:
name: 🏁 Windows
needs: [static-checks, android-build]
uses: ./.github/workflows/windows_builds.yml
web-build:
name: 🌐 Web
needs: [static-checks, android-build]
uses: ./.github/workflows/web_builds.yml