Unverified Commit 5bff9a9a authored by rcarpa's avatar rcarpa Committed by GitHub
Browse files

Merge pull request #54 from rcarpa/rework_chart_release

automatic release of helm charts
parents 869cd2da aa3cc833
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
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 "$GITHUB_ACTOR@users.noreply.github.com"

      - name: Install Helm
        uses: azure/setup-helm@v1
        with:
          version: v3.4.0

      - name: Run chart-releaser
        uses: helm/chart-releaser-action@v1.2.1
        with:
          config: cr.yaml
        env:
          CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
Loading