Skip to content

chore(deps): update weblate/weblate docker tag to v5.15.1.0 (#709) #318

chore(deps): update weblate/weblate docker tag to v5.15.1.0 (#709)

chore(deps): update weblate/weblate docker tag to v5.15.1.0 (#709) #318

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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
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