From 4a4343118a0e764936aeb9fb63df23d4a411ec25 Mon Sep 17 00:00:00 2001 From: Per Manniche Bering Date: Thu, 16 Apr 2020 09:20:42 +0200 Subject: [PATCH] Create release.yml --- .github/workflows/release.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..6ee3cd8 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,22 @@ +name: Release Charts + +on: + push: + branches: [ master ] + +jobs: + release: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v1 + + - 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.0.0-rc.1 + env: + CR_TOKEN: "${{ secrets.CR_TOKEN }}"