Skip to content

fix(deps): Use bitnami images from docker.io/bitnamilegacy (#626) #308

fix(deps): Use bitnami images from docker.io/bitnamilegacy (#626)

fix(deps): Use bitnami images from docker.io/bitnamilegacy (#626) #308

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
paths:
- charts/**
permissions:
contents: read
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 0
persist-credentials: false
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1
with:
version: v3.4.0
- name: Add repos
run: |
yq '.chart-repos' .github/ct.yaml | while read -r line ; do
repodef="${line##- }"
helm repo add "${repodef%%=*}" "${repodef##*=}"
done
- name: Run chart-releaser
uses: helm/chart-releaser-action@cae68fefc6b5f367a0275617c9f83181ba54714f # v1.7.0
env:
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CR_GENERATE_RELEASE_NOTES: true