18 lines
296 B
YAML
18 lines
296 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
branch:
|
|
- 'master'
|
|
- 'helm-*'
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Publish helm chart
|
|
uses: ./
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
charts_dir: testdata
|