Skip to content

Commit

Permalink
feat: [122] Install helm
Browse files Browse the repository at this point in the history
  • Loading branch information
sbp-bvanb committed Nov 12, 2024
1 parent 024aebf commit b2d960c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ vars:
nproc
fi
GQLGENC_VERSION: v0.25.4
HELM_VERSION: v3.16.2
MOCKERY_BIN: "{{.GOPATH}}/bin/mockery"
MOCKERY_MAJOR_VERSION: v2
MOCKERY_VERSION: "{{.MOCKERY_MAJOR_VERSION}}.46.0"
Expand Down Expand Up @@ -78,6 +79,15 @@ tasks:
-html={{.COVERPROFILE}} \
-o coverage.html
open ./coverage.html
helm-install:
silent: true
cmds:
- |
if ! helm version | grep -q "{{.HELM_VERSION}}"; then
DESIRED_VERSION={{.HELM_VERSION}} curl \
-fsSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 |\
bash -s -- --version {{.HELM_VERSION}}
fi
gci-install:
silent: true
cmds:
Expand Down

0 comments on commit b2d960c

Please sign in to comment.