1
0
Fork 0
mirror of https://github.com/kyverno/policy-reporter.git synced 2024-12-14 11:57:32 +00:00
policy-reporter/.github/workflows/cr.yaml
Frank Jogeleit fb4b88411c Add manifest install instructions for email reports
Signed-off-by: Frank Jogeleit <frank.jogeleit@web.de>
2022-07-04 12:28:44 +02:00

29 lines
No EOL
598 B
YAML

name: Release Charts
on:
push:
branches:
- main
paths:
- 'charts/**'
- 'manifests/**'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- 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@v1
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.2.1
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"