Skip to content

Commit

Permalink
Fix path to Windows zip file
Browse files Browse the repository at this point in the history
  • Loading branch information
pemistahl committed Jan 5, 2021
1 parent f44b01b commit f85581b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/chr-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ jobs:
if: ${{ matrix.os == 'windows-latest' }}
run: |
choco install zip
zip chr-${{ steps.get_version.outputs.version }}-${{ matrix.target }}.zip target/${{ matrix.target }}/release/chr.exe
cd target/${{ matrix.target }}/release
zip chr-${{ steps.get_version.outputs.version }}-${{ matrix.target }}.zip chr.exe
cd ../../..
- name: Create tar.gz file on macOS and Linux
if: ${{ matrix.os != 'windows-latest' }}
Expand Down

0 comments on commit f85581b

Please sign in to comment.