Compare commits

...

3 Commits

Author SHA1 Message Date
David Gamero
8a3c06fb8b Fix helm latest version retrieval command syntax 2025-07-22 19:52:56 +00:00
David Gamero
b375d008a1 Update helm version retrieval to use JSON output for latest version 2025-07-22 19:37:51 +00:00
David Gamero
378ae69bda Update CODEOWNERS (#202) 2025-07-22 15:17:55 -04:00
2 changed files with 3 additions and 2 deletions

2
.github/CODEOWNERS vendored
View File

@@ -1 +1 @@
* @Azure/aks-atlanta * @Azure/cloud-native-github-action-owners

View File

@@ -76,7 +76,8 @@ jobs:
--repo helm/helm \ --repo helm/helm \
--exclude-drafts \ --exclude-drafts \
--exclude-pre-releases \ --exclude-pre-releases \
--limit 1 | awk '{print $4}') --json name,isLatest \
--jq '.[] | select(.isLatest)|.name' | awk '{print $2}')
if [[ $(helm version) != *$HELM_LATEST* ]]; then if [[ $(helm version) != *$HELM_LATEST* ]]; then
echo "HELM VERSION INCORRECT: HELM VERSION DOES NOT CONTAIN $HELM_LATEST" echo "HELM VERSION INCORRECT: HELM VERSION DOES NOT CONTAIN $HELM_LATEST"