mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
216a4e13bf
* add checkout step to helm releaser. Signed-off-by: George Kaz <egeorgekaz@gmail.com> Increment version Signed-off-by: George Kaz <egeorgekaz@gmail.com> * disable version check, revert version no. to last released Signed-off-by: George Kaz <egeorgekaz@gmail.com>
26 lines
No EOL
520 B
YAML
26 lines
No EOL
520 B
YAML
name: helm-release
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
paths:
|
|
- 'charts/kyverno/Chart.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.0
|
|
|
|
- name: Run chart-releaser
|
|
uses: stefanprodan/helm-gh-pages@v1.4.1
|
|
with:
|
|
token: "${{ secrets.GITHUB_TOKEN }}" |