maybe fix ci #972
Workflow file for this run
This file contains hidden or 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
| # This workflow runs all the rest of the workflows | |
| name: π Builds | |
| on: | |
| push: | |
| paths: | |
| - "**" | |
| - "!**.md" | |
| - "!LICENSE" | |
| - "!.scripts/clang_format.sh" | |
| - "!.github/**" | |
| - "!.vscode/**" | |
| - ".github/actions/**" | |
| - ".github/workflows/**" | |
| pull_request: | |
| paths: | |
| - "**" | |
| - "!**.md" | |
| - "!LICENSE" | |
| - "!.scripts/clang_format.sh" | |
| - "!.github/**" | |
| - "!.vscode/**" | |
| - ".github/actions/**" | |
| - ".github/workflows/**" | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| editor-builds: | |
| name: π€ Build Godot for All Platforms | |
| uses: ./.github/workflows/all_editor_builds.yml | |
| secrets: inherit | |
| permissions: | |
| contents: 'read' | |
| id-token: 'write' | |
| macos-plugin-builds: | |
| name: π Build Patchwork for macOS | |
| uses: ./.github/workflows/macos_builds.yml | |
| secrets: inherit | |
| windows-plugin-builds: | |
| name: πͺ Build Patchwork for Windows | |
| uses: ./.github/workflows/windows_builds.yml | |
| secrets: inherit | |
| permissions: | |
| contents: 'read' | |
| id-token: 'write' | |
| linux-plugin-builds: | |
| name: π§ Build Patchwork for Linux | |
| uses: ./.github/workflows/linux_builds.yml | |
| merge-plugin-builds: | |
| name: π§© Merge Patchwork Builds | |
| needs: [macos-plugin-builds, windows-plugin-builds, linux-plugin-builds] | |
| uses: ./.github/workflows/merge_builds.yml | |
| compose-projects: | |
| name: π§΅ Compose Projects | |
| needs: [merge-plugin-builds] | |
| uses: ./.github/workflows/compose_projects.yml | |
| prepare-composite: | |
| name: π Prepare Windows-Ready Projects | |
| needs: [compose-projects, editor-builds] | |
| secrets: inherit | |
| uses: ./.github/workflows/prepare_composite.yml | |
| release: | |
| name: π¦ Release | |
| if: github.ref_type == 'tag' | |
| needs: [editor-builds, merge-plugin-builds, compose-projects, prepare-composite] | |
| uses: ./.github/workflows/release.yml |