Skip to content

fix(orchestrator): lowercase and truncate DB creation Job name for co… #123

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

fix(orchestrator): lowercase and truncate DB creation Job name for co… #123

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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
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 }}