File tree Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -15,31 +15,23 @@ jobs:
1515 uses : actions/checkout@v4
1616 with :
1717 lfs : true
18+
1819 # Create Library and Build folder automatically, since they are excluded in the .gitignore
1920 - name : Create Library folder
2021 run : mkdir -p UnityProject/AR_Pool/Library
2122
2223 # Build folder
2324 - name : Create Build folder
2425 run : mkdir -p UnityProject/AR_Pool/Build
25-
2626
27- # Remove Unnecessary Video Files
28- - name : Remove Unnecessary Video Files
29- run : find UnityProject/AR_Pool/Library/PackageCache -type f -name "*.mp4" -delete || true
30-
3127 # Cache
3228 - uses : actions/cache@v3
3329 with :
3430 path : UnityProject/AR_Pool/Library
3531 key : Library-${{ hashFiles('UnityProject/AR_Pool/Assets/**', 'UnityProject/AR_Pool/Packages/**', 'UnityProject/AR_Pool/ProjectSettings/**') }}
3632 restore-keys : |
3733 Library-
38-
39- # Remove Unnecessary Video Files
40- - name : Remove Unnecessary Video Files
41- run : find UnityProject/AR_Pool/Library/PackageCache -type f -name "*.mp4" -delete || true
42-
34+
4335 # Build
4436 - name : Build project
4537 uses : game-ci/unity-builder@v4
5042 with :
5143 projectPath : UnityProject/AR_Pool
5244 targetPlatform : Android
53- buildOutputPath : UnityProject/AR_Pool/Build
5445
5546 # Remove Unnecessary Video Files
5647 - name : Remove Unnecessary Video Files
You can’t perform that action at this time.
0 commit comments