Skip to content

Commit

Permalink
Fix tar command argument order in deb workflow (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
SRv6d authored Jan 8, 2025
1 parent 9c220fe commit 23d809f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
- name: Download Release Binary
run: >-
gh release download ${GITHUB_REF_NAME} --pattern "*${{ matrix.target }}.tar.gz"
--output - | tar -xz ./hanko -C ${TARGET_DIR}/release
--output - | tar -xz -C ${TARGET_DIR}/release ./hanko
env:
GITHUB_TOKEN: ${{ github.token }}

Expand Down

0 comments on commit 23d809f

Please sign in to comment.