Skip to content

VAST Data CSI Plugin - v2.4.1 #57

VAST Data CSI Plugin - v2.4.1

VAST Data CSI Plugin - v2.4.1 #57

Workflow file for this run

name: Release Charts
on: [push]
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Prepare releaser configuration
run: |
python .github/workflows/prepare_releaser_configuration.py
- name: Configure Git
if: ${{ hashFiles('releaser-config.yml') != '' }}
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
if: ${{ hashFiles('releaser-config.yml') != '' }}
uses: helm/[email protected]
with:
config: releaser-config.yml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"