Skip to content

Make it an addon.

Make it an addon. #7

Workflow file for this run

name: Builds
on:
workflow_dispatch:
pull_request:
push:
branches:
- "main"
jobs:
lint:
uses: ./.github/workflows/static_checks.yml

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

View workflow run for this annotation

GitHub Actions / Builds

Invalid workflow file

The workflow is not valid. In .github/workflows/runner.yml (Line: 12, Col: 11): Error from called workflow V-Sekai/many_bone_ik/.github/workflows/static_checks.yml@3fc4efecd5e04ede065ff8ccd5e1d27cc83f540c (Line: 11, Col: 14): Unexpected value ''
build_android:
needs: [lint]
uses: ./.github/workflows/build_android.yml
build_ios:
needs: [lint]
uses: ./.github/workflows/build_ios.yml
build_linux:
needs: [lint]
uses: ./.github/workflows/build_linux.yml
build_macos:
needs: [lint]
uses: ./.github/workflows/build_macos.yml
secrets:
APPLE_CERT_BASE64: ${{ secrets.APPLE_CERT_BASE64 }}
APPLE_CERT_PASSWORD: ${{ secrets.APPLE_CERT_PASSWORD }}
APPLE_DEV_PASSWORD: ${{ secrets.APPLE_DEV_PASSWORD }}
APPLE_DEV_ID: ${{ secrets.APPLE_DEV_ID }}
APPLE_DEV_TEAM_ID: ${{ secrets.APPLE_DEV_TEAM_ID }}
APPLE_DEV_APP_ID: ${{ secrets.APPLE_DEV_APP_ID }}
build_windows:
needs: [lint]
uses: ./.github/workflows/build_windows.yml
build_web:
needs: [lint]
uses: ./.github/workflows/build_web.yml
release:
name: Create Release
permissions:
contents: write
needs: [build_android, build_ios, build_linux, build_macos, build_windows, build_web]
uses: ./.github/workflows/release.yml