Skip to content

Create a K8s event attached to the policy report at each update (#69) #19

Create a K8s event attached to the policy report at each update (#69)

Create a K8s event attached to the policy report at each update (#69) #19

name: Release Helm Charts
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v3
- name: Run chart-releaser
uses: hardbyte/chart-releaser-action@main
with:
charts_dir: operator/charts
mark_as_latest: false
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"