Skip to content

Merge pull request #16 from deepgram/brent-george/update-dependencies #28

Merge pull request #16 from deepgram/brent-george/update-dependencies

Merge pull request #16 from deepgram/brent-george/update-dependencies #28

Workflow file for this run

name: Release Helm Chart
on:
push:
branches:
- main
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
token: "${{ secrets.GH_SELFHOSTEDRESOURCES_RW }}"
- name: Configure Git
run: |
# Give CI a git identity for its commit message
git config --global user.email "[email protected]"
git config --global user.name "Deepgram CI"
- name: Install Helm
uses: azure/setup-helm@v4
env:
GITHUB_TOKEN: "${{ secrets.GH_SELFHOSTEDRESOURCES_RW }}"
- name: Add NVIDIA Helm chart repository
run: |
helm repo add nvidia https://helm.ngc.nvidia.com/nvidia
helm repo update
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GH_SELFHOSTEDRESOURCES_RW }}"