Skip to content

Commit

Permalink
use helm v3.12.3 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
t83714 committed Oct 6, 2023
1 parent 63b0311 commit 2db7d9b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ jobs:
name: Build, Test & Push to Docker
runs-on: ubuntu-latest
steps:
- name: Set helm to v3.12.3
shell: bash
run: |
sudo rm /usr/local/bin/helm
sudo curl -fsSL https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 > /tmp/helm.sh
sudo chmod +x /tmp/helm.sh
sudo /tmp/helm.sh --version v3.12.3
helm version
- uses: actions/checkout@v2
- name: Use Node.js 14
uses: actions/setup-node@v1
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@ jobs:
name: Release Helm Chart
runs-on: ubuntu-latest
steps:
- name: Set helm to v3.12.3
shell: bash
run: |
sudo rm /usr/local/bin/helm
sudo curl -fsSL https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 > /tmp/helm.sh
sudo chmod +x /tmp/helm.sh
sudo /tmp/helm.sh --version v3.12.3
helm version
- uses: actions/checkout@v2

- name: Use Node.js 14
Expand Down

0 comments on commit 2db7d9b

Please sign in to comment.