Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
RyodoTanaka committed Oct 7, 2024
1 parent a1461b2 commit 69b2d23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:

- name: Set up Unity version-specific Packages and ProjectSettings
run: |
if [[ "${{ matrix.unity_version }}" == "2020.3.48f1" ]]; then
if [[ "${{ matrix.unityVersion }}" == "2020.3.48f1" ]]; then
cp -r .ProjectSettings2020 ProjectSettings
cp -r .Packages2020 Packages
elif [[ "${{ matrix.unity_version }}" == "2021.3.42f1" ]]; then
elif [[ "${{ matrix.unityVersion }}" == "2021.3.42f1" ]]; then
cp -r .ProjectSettings2021 ProjectSettings
cp -r .Packages2021 Packages
elif [[ "${{ matrix.unity_version }}" == "2022.3.42f1" ]]; then
elif [[ "${{ matrix.unityVersion }}" == "2022.3.42f1" ]]; then
cp -r .ProjectSettings2022 ProjectSettings
cp -r .Packages2022 Packages
fi
Expand Down

0 comments on commit 69b2d23

Please sign in to comment.