Skip to content

Add value to disable configmap #3

Add value to disable configmap

Add value to disable configmap #3

Workflow file for this run

name: Release charts if needed
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
# Authenticate as the GitHub Actions bot https://api.github.com/users/github-actions%5Bbot%5D
git config user.name "GitHub Actions"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: v3.8.0
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: charts
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"