Skip to content

Commit

Permalink
fix: got to unzip and move the binary
Browse files Browse the repository at this point in the history
  • Loading branch information
tboerger committed Jan 17, 2024
1 parent efa1988 commit 45baee3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ runs:
- name: Download latest binary
shell: bash
run: |
sudo curl -sSLo /usr/local/bin/packwiz https://nightly.link/packwiz/packwiz/workflows/go/main/Linux%2064-bit%20x86.zip
sudo chmod +x /usr/local/bin/packwiz
curl -sSLo packwiz.zip https://nightly.link/packwiz/packwiz/workflows/go/main/Linux%2064-bit%20x86.zip && \
unzip packwiz.zip && \
chmod +x packwiz && \
sudo mv packwiz /usr/local/bin/ && \
rm packwiz.zip
...

0 comments on commit 45baee3

Please sign in to comment.