Skip to content

Bump actions/setup-python from 4.7.1 to 5.0.0 (#174) #129

Bump actions/setup-python from 4.7.1 to 5.0.0 (#174)

Bump actions/setup-python from 4.7.1 to 5.0.0 (#174) #129

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 "[email protected]"
- name: Install Helm
uses: azure/[email protected]
with:
version: "${{ env.helm-version }}"
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"