Skip to content

Commit

Permalink
Specify zstd when extracting Spinnaker SDK on CentOS deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
ds58 committed Jan 23, 2023
1 parent 36f6384 commit 963b497
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/deploy-centos/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ runs:
echo Installing Spinnaker amd64
python3 -m gdown.cli https://drive.google.com/uc?id=1ILDEZk0SuOoh4_cJExpZJCPXCqfxUkAi
tar -xzvf spinnaker-3.0.0.118-amd64-pkg.tar.gz
find -name *.deb | while read f; do ar -xv $f; tar --totals -xvf data.tar.zst -C /; done;
find -name *.deb | while read f; do ar -xv $f; tar -I zstd --totals -xvf data.tar.zst -C /; done;
fi
if [[ -n ${CI_DEPLOY_NEED_GCC:-} ]]; then
Expand Down

0 comments on commit 963b497

Please sign in to comment.