Skip to content

Update path in action #21

Update path in action

Update path in action #21

Workflow file for this run

name: Main
on:
push:
branches:
- master
jobs:
helm:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Set up Helm
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78
with:
version: v3.14.3
- name: Run chart-releaser
uses: helm/chart-releaser-action@a917fd15b20e8b64b94d9158ad54cd6345335584
with:
charts_dir: ./
config: cr.yaml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"