thiagoelg commented on code in PR #2103:
URL:
https://github.com/apache/incubator-kie-tools/pull/2103#discussion_r1437724435
##########
.github/actions/setup-env/action.yml:
##########
@@ -97,6 +97,16 @@ runs:
colima start --memory 4 --network-address --verbose
# QEMU is reinstalled due to this bug:
https://github.com/lima-vm/lima/issues/1742
+ - name: "Setup Helm (Ubuntu)"
+ if: runner.os == 'Linux'
+ shell: bash
+ env:
+ HELM_VERSION: "v3.13.3"
+ run: |
+ echo "STEP: Install Helm (Ubuntu only)"
+ sudo wget -q https://get.helm.sh/helm-$HELM_VERSION-linux-amd64.tar.gz
-O - | tar -xzO linux-amd64/helm > /usr/local/bin/helm
+ sudo chmod +x /usr/local/bin/helm
Review Comment:
There's no need, the contents of the download are being piped to the `tar`
command, so the .tar.gz is not stored.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]