Skip to content

Commit

Permalink
Add github action for release
Browse files Browse the repository at this point in the history
  • Loading branch information
lucernae committed Sep 11, 2020
1 parent cae4e3b commit 2d54af9
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release Charts

on:
push:
branches:
- master

jobs:
release:
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 "[email protected]"
- name: Run chart-releaser
uses: lucernae/[email protected]
with:
level: 3
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 2d54af9

Please sign in to comment.