mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
18 lines
No EOL
346 B
YAML
18 lines
No EOL
346 B
YAML
name: helm-package
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
paths:
|
|
- 'charts/kyverno/**'
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: J12934/helm-gh-pages-action@master
|
|
with:
|
|
access-token: ${{ secrets.ACCESS_TOKEN }}
|
|
deploy-branch: gh-pages
|
|
charts-folder: charts |