Skip to content

Commit 8bd7cc1

Browse files
author
Saravanan Raghunathan
committed
mm
1 parent d74bca7 commit 8bd7cc1

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [push, pull_request]
55
jobs:
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
@@ -16,7 +16,7 @@ jobs:
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
@@ -29,7 +29,7 @@ jobs:
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/**') }}
@@ -55,11 +55,9 @@ jobs:
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

0 commit comments

Comments
 (0)