github.com/spotahome/redis-operator@v1.2.4/.github/workflows/helm.yml (about)

     1  name: Release Charts
     2  
     3  on:
     4    push:
     5      branches:
     6        - master
     7  
     8  jobs:
     9    release:
    10      runs-on: ubuntu-latest
    11      steps:
    12        - uses: actions/checkout@v3
    13          with:
    14            fetch-depth: 0
    15        - name: Configure Git
    16          run: |
    17            git config user.name "$GITHUB_ACTOR"
    18            git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
    19  
    20        - name: Install Helm
    21          uses: azure/setup-helm@v3
    22          with:
    23            version: v3.7.2
    24  
    25        - name: Release
    26          uses: helm/chart-releaser-action@v1.4.1
    27          with:
    28            charts_dir: charts
    29            config: charts/chart-release-config.yaml
    30          env:
    31            CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"