Skip to content

Commit

Permalink
fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
crazyscot committed Oct 28, 2024
1 parent c79f312 commit 01f9389
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,17 @@ jobs:
# if: startsWith(matrix.host, 'ubuntu')
# run: scripts/install-ubuntu-packages
- uses: taiki-e/upload-rust-binary-action@v1
id: build
with:
bin: qcp
token: ${{ secrets.GITHUB_TOKEN }}
target: ${{ matrix.target }}
include: README.md, LICENSE, CHANGELOG.md
include: README.md,LICENSE,CHANGELOG.md
leading-dir: true
tar: unix
zip: windows
dry_run: true # TEMP, for testing
- run: ls -l *.tar.gz # TEST
- uses: actions/upload-artifact@v4
with:
name: binary-${{ matrix.target }}
path: qcp-${{ github.ref_name }}-${{ matrix.target }}.tar.gz
path: ${{ steps.build.outputs.archive }}.tar.gz

0 comments on commit 01f9389

Please sign in to comment.