Skip to content

minddocdev/helm-action

Repository files navigation

Helm Action

Install the dependencies

yarn install

Build the typescript

yarn build

Run the tests ✔️

yarn test

Usage

Add check chart step to your flow

- name: Check chart
  uses: minddocdev/helm-action@master
  with:
    chartName: myChart
    chartValueFiles:
      - 'myPath/my-values.yaml'

Add check chart step to your flow (and publish afterwards)

- name: Publish chart
  uses: minddocdev/helm-action@master
  with:
    chartName: myChart
    githubToken: ${{ secrets.MY_GITHUB_TOKEN }}
    publish: 'true'