Skip to content

Commit

Permalink
update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyanistic committed Aug 1, 2023
1 parent 05919ac commit d409ea4
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 @@ -31,7 +31,7 @@ jobs:
- name: Upload Release Assets (windows)
id: upload-release-asset-windows
uses: actions/upload-release-asset@v1
if: ${{ matrix.platform }} == 'windows-latest'
if: matrix.platform == 'windows-latest'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Upload Release Assets (unix)
id: upload-release-asset-unix
uses: actions/upload-release-asset@v1
if: ${{ matrix.platform }} != 'windows-latest'
if: matrix.platform != 'windows-latest'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down

0 comments on commit d409ea4

Please sign in to comment.