We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, and thanks for the useful action.
It seems this action currently only supports amd64, which appears to be hardcoded in the get.helm.sh url. https://github.com/Azure/setup-helm/blob/master/lib/run.js#L59
It would be nice to have this support alternative architectures such as arm64 the same way the azure/setup-kubectl action does.
Currently working around this by copying a lot of the same logic in bash.
mkdir -p /tmp/helm /opt/hostedtoolcache/helm/3.7.2/arm64/linux-arm64/ wget https://get.helm.sh/helm-v3.7.2-linux-arm64.tar.gz tar -zxvf helm-v3.7.2-linux-arm64.tar.gz -C /tmp/helm mv /tmp/helm/linux-arm64/helm /opt/hostedtoolcache/helm/3.7.2/arm64/linux-arm64/ echo "/opt/hostedtoolcache/helm/3.7.2/arm64/linux-arm64/" >> $GITHUB_PATH
The text was updated successfully, but these errors were encountered:
This issue is idle because it has been open for 14 days with no activity.
Sorry, something went wrong.
Hey @michael-baraboo-cnr,
For sure, we will look into this! This is in the pipeline!
OliverMKing
Successfully merging a pull request may close this issue.
Hello, and thanks for the useful action.
It seems this action currently only supports amd64, which appears to be hardcoded in the get.helm.sh url.
https://github.com/Azure/setup-helm/blob/master/lib/run.js#L59
It would be nice to have this support alternative architectures such as arm64 the same way the azure/setup-kubectl action does.
Currently working around this by copying a lot of the same logic in bash.
The text was updated successfully, but these errors were encountered: