Skip to content

Bump actions/setup-python from 5.0.0 to 5.1.0 (#178) #133

Bump actions/setup-python from 5.0.0 to 5.1.0 (#178)

Bump actions/setup-python from 5.0.0 to 5.1.0 (#178) #133

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
env:
helm-version: "v3.10.0"
jobs:
release:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
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@v3.5
with:
version: "${{ env.helm-version }}"
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"