27 lines
544 B
YAML
27 lines
544 B
YAML
name: release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "chart-v*"
|
|
|
|
jobs:
|
|
release:
|
|
permissions: write-all
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: configure git
|
|
run: |
|
|
git config user.name "$GITHUB_ACTOR"
|
|
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
|
|
|
- name: run chart-releaser
|
|
uses: helm/chart-releaser-action@v1.5.0
|
|
env:
|
|
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|