Skip to content

fix(orchestrator): lowercase and truncate DB creation Job name for RF… #122

fix(orchestrator): lowercase and truncate DB creation Job name for RF…

fix(orchestrator): lowercase and truncate DB creation Job name for RF… #122

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
- release-1.[0-9]+
paths:
- "charts/**"
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
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: Add dependencies
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
- name: Run chart-releaser
uses: helm/chart-releaser-action@cae68fefc6b5f367a0275617c9f83181ba54714f # v1.7.0
with:
config: cr.yaml
mark_as_latest: ${{ github.ref == 'refs/heads/main' }}
env:
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }}