-
Notifications
You must be signed in to change notification settings - Fork 13
46 lines (39 loc) · 958 Bytes
/
build-all.yml
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
name: 'Build all'
run-name: Build all-${{ inputs.version }}
on:
workflow_dispatch:
inputs:
version:
description: 'Version'
required: true
default: '0.0.0-dev'
workflow_call:
inputs:
version:
required: true
type: string
jobs:
build-1-18-x:
uses: ./.github/workflows/build-1.18.x.yml
with:
version: ${{ inputs.version }}
build-1-19-x:
uses: ./.github/workflows/build-1.19.x.yml
with:
version: ${{ inputs.version }}
build-1-20-1:
uses: ./.github/workflows/build-1.20.1.yml
with:
version: ${{ inputs.version }}
build-1-20-2:
uses: ./.github/workflows/build-1.20.2.yml
with:
version: ${{ inputs.version }}
build-1-20-x:
uses: ./.github/workflows/build-1.20.x.yml
with:
version: ${{ inputs.version }}
build-1-21-x:
uses: ./.github/workflows/build-1.21.x.yml
with:
version: ${{ inputs.version }}