Skip to content

Commit

Permalink
release: fix windows-latest => windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ret2libc committed Oct 14, 2022
1 parent d267e55 commit f96252f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
- name: Upload artifact
if: matrix.goos != 'windows-latest'
if: matrix.goos != 'windows'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -59,7 +59,7 @@ jobs:
asset_name: rz-pm-${{ matrix.goos }}-${{ matrix.goarch }}
asset_content_type: application/octet-stream
- name: Upload artifact (windows)
if: matrix.goos == 'windows-latest'
if: matrix.goos == 'windows'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit f96252f

Please sign in to comment.