Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update main.yml #193

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/cache@v3
with:
path: Assets/Packages
key: Packages
key: Packages-${{ hashFiles('Assets/NuGet.config') }}
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
Expand All @@ -52,11 +52,11 @@ jobs:
- uses: actions/cache@v3
with:
path: Library
key: Library-test
key: Library-Test-${{ hashFiles('Packages/*') }}
- uses: actions/cache/restore@v3
with:
path: Assets/Packages
key: Packages
key: Packages-${{ hashFiles('Assets/NuGet.config') }}
- uses: game-ci/unity-test-runner@v4
id: testRunner
env:
Expand Down Expand Up @@ -91,11 +91,11 @@ jobs:
- uses: actions/cache@v3
with:
path: Library
key: Library-${{ matrix.targetPlatform }}
key: Library-${{ matrix.targetPlatform }}-${{ hashFiles('Packages/*') }}
- uses: actions/cache/restore@v3
with:
path: Assets/Packages
key: Packages
key: Packages-${{ hashFiles('Assets/NuGet.config') }}
- uses: game-ci/unity-builder@v4
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
Expand Down
Loading