-
Notifications
You must be signed in to change notification settings - Fork 4
75 lines (66 loc) · 1.92 KB
/
runner.yml
File metadata and controls
75 lines (66 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# 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