Skip to content

Commit

Permalink
Fix automation for untar'ing xz files on linux (#6)
Browse files Browse the repository at this point in the history
Errantly included a `-z` (which functions on macos but not on linux)
  • Loading branch information
mark-thm authored Apr 17, 2024
1 parent 3abf8ec commit 8ff20b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/periodic-update-multitool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
latest="$(curl https://api.github.com/repos/theoremlp/multitool/releases/latest | jq -r '.assets[].browser_download_url | select(. | test("linux-gnu.tar.xz$"))')"
wget -O multitool.tar.xz "$latest"
tar --strip-components=1 -xzf multitool.tar.xz
tar --strip-components=1 -xf multitool.tar.xz
- name: Find Updates and Render Lockfile
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
Expand Down

0 comments on commit 8ff20b5

Please sign in to comment.