File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ on: [push, pull_request]
55jobs :
66 build :
77 name : Build my project ✨
8- runs-on : ubuntu-22.04
8+ runs-on : ubuntu-latest
99 steps :
1010 # Checkout (without LFS)
1111 - name : Checkout repository
1616 run : git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
1717
1818 - name : Restore LFS cache
19- uses : actions/cache@v4
19+ uses : actions/cache@v3
2020 id : lfs-cache
2121 with :
2222 path : .git/lfs
2929 git reset --hard
3030
3131 # Cache
32- - uses : actions/cache@v4
32+ - uses : actions/cache@v3
3333 with :
3434 path : Library
3535 key : Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
5555 UNITY_PASSWORD : ${{ secrets.UNITY_PASSWORD }}
5656 with :
5757 targetPlatform : WebGL
58- # adding allowDirtyBuild here fixed it for me!
59- allowDirtyBuild : true
6058
6159 # Output
62- - uses : actions/upload-artifact@v4
60+ - uses : actions/upload-artifact@v3
6361 with :
6462 name : Build
6563 path : build
You can’t perform that action at this time.
0 commit comments