Skip to content

Commit 84da564

Browse files
committed
WIP
1 parent 731e934 commit 84da564

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/create-release.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
build:
1414
runs-on: ubuntu-latest
1515
strategy:
16-
fail-fast: false
17-
max-parallel: 5
16+
fail-fast: true
17+
max-parallel: 10
1818
matrix:
1919
unityVersion:
2020
- 2019.4.40f1
@@ -66,25 +66,25 @@ jobs:
6666
- uses: actions/cache@v4
6767
with:
6868
path: Library
69-
key: Library-AUP-${{ matrix.platform }}-${{ matrix.unityVersion }}
69+
key: Library-${{ matrix.platform }}-${{ matrix.unityVersion }}
7070
restore-keys: |
71-
Library-AUP-
71+
Library-${{ matrix.platform }}-${{ matrix.unityVersion }}
7272
7373
- name: Cache Packages
7474
uses: actions/cache@v4
7575
with:
7676
path: $HOME/.cache/unity3d/packages
7777
key: Packages-${{ hashFiles('Packages/packages-lock.json') }}-${{ matrix.unityVersion }}
7878
restore-keys: |
79-
Packages-
79+
Packages-${{ hashFiles('Packages/packages-lock.json') }}-${{ matrix.unityVersion }}
8080
8181
- name: Cache Packages
8282
uses: actions/cache@v4
8383
with:
8484
path: /var/lib/docker/
85-
key: Docker-Images
85+
key: Docker-Images-${{ matrix.platform }}-${{ matrix.unityVersion }}
8686
restore-keys: |
87-
Docker-Images
87+
Docker-Images-${{ matrix.platform }}-${{ matrix.unityVersion }}
8888
8989
# - name: Cleanup Docker
9090
# run: |

0 commit comments

Comments
 (0)