mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
2de0af635e
* bump helm version Signed-off-by: Shuting Zhao <shutting06@gmail.com> * update helm-release trigger paths Signed-off-by: Shuting Zhao <shutting06@gmail.com>
27 lines
No EOL
566 B
YAML
27 lines
No EOL
566 B
YAML
name: helm-release
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
paths:
|
|
- 'charts/kyverno/Chart.yaml'
|
|
- '.github/workflows/helm-release.yaml'
|
|
|
|
jobs:
|
|
create-release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Install Helm
|
|
uses: azure/setup-helm@v1
|
|
with:
|
|
version: v3.4.1
|
|
|
|
- name: Run chart-releaser
|
|
uses: stefanprodan/helm-gh-pages@v1.4.1
|
|
with:
|
|
token: "${{ secrets.GITHUB_TOKEN }}" |