Skip to content

Commit

Permalink
fix: rename project on workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Aniol0012 committed Dec 10, 2024
1 parent 5a4ed89 commit 60025d4
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build-unity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,20 @@ jobs:
- name: Restore Library cache
uses: actions/cache@v2
with:
path: test-projects/test-project/Library
path: PacoMonkey/Library
key: Library-test-project-WebGL

# Test
- name: Run tests
uses: game-ci/unity-test-runner@v2
with:
projectPath: test-projects/test-project
projectPath: PacoMonkey

# Build
- name: Build project
uses: game-ci/unity-builder@v2
with:
projectPath: test-projects/test-project
projectPath: PacoMonkey
targetPlatform: WebGL

# Output
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
- name: Restore Library cache
uses: actions/cache@v2
with:
path: test-projects/test-project/Library
path: PacoMonkey/Library
key: Library-test-project
restore-keys: |
Library-test-
Expand All @@ -129,7 +129,7 @@ jobs:
- uses: game-ci/unity-test-runner@v2
id: testRunner
with:
projectPath: test-projects/test-project
projectPath: PacoMonkey
testMode: editmode

# Upload artifact
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
- name: Restore Library cache
uses: actions/cache@v2
with:
path: test-projects/test-project/Library
path: PacoMonkey/Library
key: Library-test-project-${{ matrix.targetPlatform }}
restore-keys: |
Library-test-project-
Expand All @@ -174,7 +174,7 @@ jobs:
- uses: game-ci/unity-test-runner@v2
id: testRunner
with:
projectPath: test-projects/test-project
projectPath: PacoMonkey
testMode: playmode

# Upload artifact
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
- name: Restore Library cache
uses: actions/cache@v2
with:
path: test-projects/test-project/Library
path: PacoMonkey/Library
key: Library-test-project-${{ matrix.targetPlatform }}
restore-keys: |
Library-test-project-
Expand All @@ -226,7 +226,7 @@ jobs:
- uses: game-ci/[email protected]
id: testRunner
with:
projectPath: test-projects/test-project
projectPath: PacoMonkey
testMode: ${{ matrix.testMode }}
checkName: ${{ matrix.testMode }} test results
githubToken: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -248,7 +248,7 @@ jobs:
fail-fast: false
matrix:
projectPath:
- test-projects/test-project
- PacoMonkey
targetPlatform:
- StandaloneOSX # Build a macOS standalone (Intel 64-bit).
- StandaloneWindows64 # Build a Windows 64-bit standalone.
Expand Down

0 comments on commit 60025d4

Please sign in to comment.