Skip to content

Commit

Permalink
fix release build reference for zip archive
Browse files Browse the repository at this point in the history
  • Loading branch information
gregl83 committed Jun 25, 2023
1 parent 905be49 commit f0f9407
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
binary=paq${{ steps.vars.outputs.ext }}
archive=${{ steps.vars.outputs.name }}-${{ steps.vars.outputs.os }}-${{ matrix.architecture }}.zip
mv $source $binary
tar -zvcf $archive $binary
zip $archive $binary
- name: Create Release
uses: softprops/action-gh-release@v1
Expand All @@ -99,4 +99,4 @@ jobs:
prerelease: false
token: ${{ secrets.GITHUB_TOKEN }}
files: |
${{ steps.vars.outputs.name }}-${{ steps.vars.outputs.os }}-${{ matrix.architecture }}${{ steps.vars.outputs.ext }}
${{ steps.vars.outputs.name }}-${{ steps.vars.outputs.os }}-${{ matrix.architecture }}.zip

0 comments on commit f0f9407

Please sign in to comment.