Pipeline to use correct decompression

This commit is contained in:
Kyle Zsembery 2020-10-13 08:29:23 +11:00
parent 4d60e9ca95
commit c499abfed1
1 changed files with 2 additions and 2 deletions

View File

@ -39,13 +39,13 @@ jobs:
working-directory: ./downloads
- name: Extract zip binaries
if: runner.os != 'Linux'
if: runner.os == 'Windows'
run: unzip latest
shell: bash
working-directory: ./downloads
- name: Extract xz binaries
if: runner.os == 'Linux'
if: runner.os != 'Windows'
run: tar -xf latest
shell: bash
working-directory: ./downloads