Skip to content

Commit bc1d984

Browse files
committed
fix: testing project generation.
1 parent 268da8e commit bc1d984

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/generate-unity-project-files.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ jobs:
1414
- name: Checkout Repository
1515
uses: actions/checkout@v4
1616

17+
- name: Install FUSE for AppImage
18+
run: |
19+
sudo apt update
20+
sudo apt install -y libfuse2
21+
1722
- name: Download and Install Unity Hub
1823
run: |
1924
wget https://public-cdn.cloud.unity3d.com/hub/prod/UnityHub.AppImage -O UnityHub.AppImage
@@ -23,12 +28,12 @@ jobs:
2328
- name: Install Unity via Unity Hub CLI
2429
run: |
2530
unity-hub --headless install
26-
unity-hub -- --headless install --version 2021.3.16f1
31+
unity-hub -- --headless install --version 2022.3.15f1
2732
2833
- name: Verify Unity Installation
2934
run: |
3035
/opt/unity/Editor/Unity --version
3136
3237
- name: Generate Solution and Project Files
3338
run: |
34-
/opt/unity/Editor/Unity -batchmode -logFile /dev/stdout -projectPath $GITHUB_WORKSPACE -quit
39+
/opt/unity/Editor/Unity -batchmode -logFile /dev/stdout -projectPath $GITHUB_WORKSPACE -quit

0 commit comments

Comments
 (0)