Skip to content

Commit

Permalink
Fixed error in build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Greenfoot5 committed May 10, 2023
1 parent 4d5d90b commit 989de48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
projectPath: 'Tower Defence'
targetPlatform: ${{ matrix.targetPlatform }}
if:
targetPlatform: ${{ matrix.targetPlatform != Android }}
targetPlatform: ${{ matrix.targetPlatform != 'Android' }}

- uses: game-ci/unity-builder@v2
env:
Expand All @@ -87,7 +87,7 @@ jobs:
androidKeyaliasPass: ${{ secrets.ANDROID_KEYALIAS_PASS }}
androidTargetSdkVersion: AndroidApiLevel31
if:
targetPlatform: ${{ matrix.targetPlatform == Android }}
targetPlatform: ${{ matrix.targetPlatform == 'Android' }}

- uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 989de48

Please sign in to comment.