Skip to content

Remove containers used in commit checks after running (#17) #16

Remove containers used in commit checks after running (#17)

Remove containers used in commit checks after running (#17) #16

Workflow file for this run

name: release
on:
push:
branches:
- main
paths-ignore:
- '.gitignore'
- '*.md'
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: azure/setup-helm@v3
with:
version: '3.10.0'
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: 'charts/'
env:
CR_TOKEN: '${{ secrets.GITHUB_TOKEN }}'