Skip to content

Cog ai model nginx sidecar auth (#2) #45

Cog ai model nginx sidecar auth (#2)

Cog ai model nginx sidecar auth (#2) #45

Workflow file for this run

name: release-charts
on:
push:
branches:
- main
permissions: {}
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- 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@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Add dependency chart repos
run: |
#helm repo add elastic https://helm.elastic.co
#helm repo add grafana https://grafana.github.io/helm-charts
#helm repo add prometheus https://prometheus-community.github.io/helm-charts
#helm repo add bitnami https://charts.bitnami.com/bitnami
#helm repo add hashicorp https://helm.releases.hashicorp.com
#helm repo add minio https://helm.min.io
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.5.0
with:
charts_dir: charts
config: cr.yaml
env:
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }}