Skip to content

Commit

Permalink
Attempt to fix project path error
Browse files Browse the repository at this point in the history
  • Loading branch information
ygtdmn committed Nov 1, 2020
1 parent f9e3cb4 commit feec614
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:
strategy:
fail-fast: false
matrix:
projectPath:
- ""
unityVersion:
- 2019.3.11f1
targetPlatform:
Expand All @@ -27,17 +25,15 @@ jobs:
lfs: true
- uses: actions/[email protected]
with:
path: ${{ matrix.projectPath }}/Library
key: Library-${{ matrix.projectPath }}-${{ matrix.targetPlatform }}
path: Library
key: Library-${{ matrix.targetPlatform }}
restore-keys: |
Library-${{ matrix.projectPath }}-
Library-
- uses: webbertakken/[email protected]
id: testRunner
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
with:
projectPath: ${{ matrix.projectPath }}
unityVersion: ${{ matrix.unityVersion }}
- uses: actions/upload-artifact@v1
with:
Expand All @@ -47,7 +43,6 @@ jobs:
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
with:
projectPath: ${{ matrix.projectPath }}
unityVersion: ${{ matrix.unityVersion }}
targetPlatform: ${{ matrix.targetPlatform }}
customParameters: '-myParameter myValue -myBoolean -ThirdParameter andItsValue'
Expand Down

0 comments on commit feec614

Please sign in to comment.