Skip to content

Add missing env var for values view access controls (#453) #4

Add missing env var for values view access controls (#453)

Add missing env var for values view access controls (#453) #4

Workflow file for this run

name: Release Charts
on:
push:
branches:
- master
paths-ignore:
- '**.md'
- 'LICENSE'
- 'NOTICE'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Fetch history
run: git fetch --prune --unshallow
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v1
with:
version: v3.4.0
- name: Add Helm repos
run: |
helm repo add elasticsearch https://helm.elastic.co
helm repo add neo4j https://helm.neo4j.com/neo4j
helm repo add mysql https://charts.bitnami.com/bitnami
helm repo add cp-helm-charts https://confluentinc.github.io/cp-helm-charts
helm repo add kafka https://charts.bitnami.com/bitnami
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_repo_url: https://helm.datahubproject.io
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"