We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f311ac commit 699e1ceCopy full SHA for 699e1ce
.github/workflows/integration-tests.yml
@@ -79,12 +79,7 @@ jobs:
79
env:
80
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
81
run: |
82
- HELM_LATEST=$(gh release list \
83
- --repo helm/helm \
84
- --exclude-drafts \
85
- --exclude-pre-releases \
86
- --json name,isLatest \
87
- --jq '.[] | select(.isLatest)|.name' | awk '{print $2}')
+ HELM_LATEST=$(curl -s https://get.helm.sh/helm-latest-version)
88
89
if [[ $(helm version) != *$HELM_LATEST* ]]; then
90
echo "HELM VERSION INCORRECT: HELM VERSION DOES NOT CONTAIN $HELM_LATEST"
0 commit comments