We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9f70bf commit 75f8fa8Copy full SHA for 75f8fa8
.github/workflows/ci.yml
@@ -61,6 +61,7 @@ jobs:
61
62
- name: Cache Build Output
63
uses: actions/cache@v4
64
+ id: cache-build
65
with:
66
path: build
67
key: Build-${{ matrix.targetPlatform }}-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
@@ -70,6 +71,7 @@ jobs:
70
71
- run: echo "::add-mask::${{ secrets.LICENSE_SERVER_URL }}"
72
73
- uses: game-ci/unity-builder@v4
74
+ if: steps.cache-build.outputs.cache-hit != 'true'
75
76
unityVersion: ${{ env.UNITY_VERSION }}
77
targetPlatform: ${{ matrix.targetPlatform }}
0 commit comments