feat(infra): Bump Vespa Helm Version (#5161) #13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Onyx Helm Charts | |
on: | |
push: | |
branches: | |
- main | |
permissions: write-all | |
jobs: | |
release: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "$GITHUB_ACTOR@users.noreply.github.com" | |
- name: Install Helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.12.1 | |
- name: Add Required Helm Repositories | |
run: | | |
helm repo add bitnami https://charts.bitnami.com/bitnami | |
helm repo add onyx-vespa https://onyx-dot-app.github.io/vespa-helm-charts | |
helm repo update | |
- name: Run chart-releaser | |
uses: helm/chart-releaser-action@v1.7.0 | |
with: | |
charts_dir: deployment/helm/charts | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |