From eaa553dc8390d2eafe1c86c5c9db3683732943c5 Mon Sep 17 00:00:00 2001 From: Ikiru Yoshizaki <3856350+guitarrapc@users.noreply.github.com> Date: Tue, 24 Sep 2024 18:30:54 +0900 Subject: [PATCH] ci: remove Unity 2021 LTS from Build matrix --- .github/workflows/build-debug.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-debug.yml b/.github/workflows/build-debug.yml index e3bd6a6..09bd3f8 100644 --- a/.github/workflows/build-debug.yml +++ b/.github/workflows/build-debug.yml @@ -24,7 +24,7 @@ jobs: fail-fast: false max-parallel: 2 matrix: - unity: ["2021.3.41f1", "2022.3.39f1", "6000.0.12f1"] # Test with LTS + unity: ["2022.3.39f1", "6000.0.12f1"] # Test with LTS runs-on: ubuntu-latest timeout-minutes: 20 steps: @@ -44,7 +44,7 @@ jobs: # Execute scripts: Export Package # /opt/Unity/Editor/Unity -quit -batchmode -nographics -silent-crashes -logFile -projectPath . -executeMethod PackageExporter.Export - name: Build Unity (.unitypacakge) - if: ${{ startsWith(matrix.unity, '2021') }} # only execute once + if: ${{ startsWith(matrix.unity, '2022') }} # only execute once uses: Cysharp/Actions/.github/actions/unity-builder@main env: UNITY_EMAIL: ${{ steps.op-load-secret.outputs.UNITY_EMAIL }}