Skip to content

Commit 33af0ae

Browse files
committed
Add workflow strategy for multiple versions
1 parent f787959 commit 33af0ae

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

Diff for: .github/workflows/main.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,26 @@ jobs:
77
requestManualActivationFile:
88
name: Request manual activation file 🔑
99
runs-on: ubuntu-latest
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
unityVersion:
14+
- 2018.4.15f1
15+
- 2019.2.11f1
16+
- 2019.2.14f1
17+
- 2019.2.17f1
18+
# - 2020.1.0a15
1019
steps:
1120
# Checkout repository (required to test local actions)
1221
- name: Checkout repository
1322
uses: actions/checkout@v1
1423

1524
# Request manual activation file
1625
- name: Request manual activation file
17-
uses: ./
1826
id: getManualLicenseFile
27+
uses: ./
28+
with:
29+
unityVersion: ${{ matrix.unityVersion }}
1930

2031
# Upload artifact (Unity_v20XX.X.XXXX.alf)
2132
- name: Expose as artifact

0 commit comments

Comments
 (0)