Skip to content

Commit

Permalink
ci: fix package upload
Browse files Browse the repository at this point in the history
  • Loading branch information
HeitorAugustoLN committed Dec 16, 2024
1 parent d623f77 commit 75eda93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ jobs:
cd target/${{ matrix.target }}/release
tar czvf ../../../${{ github.event.repository.name }}-${{ needs.release-please.outputs.tag_name }}-${{ matrix.target }}.tar.gz *
- name: Upload binary
run: gh release upload ${{ needs.release-please.outputs.tag_name }} ${github.event.repository.name}-${{ needs.release-please.outputs.tag_name }}-${{ matrix.target }}.tar.gz
run: gh release upload ${{ needs.release-please.outputs.tag_name }} ${{ github.event.repository.name }}-${{ needs.release-please.outputs.tag_name }}-${{ matrix.target }}.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 75eda93

Please sign in to comment.