Skip to content

[main] update LCORE image from 0.5.2 to 0.5.3 (#475) #127

[main] update LCORE image from 0.5.2 to 0.5.3 (#475)

[main] update LCORE image from 0.5.2 to 0.5.3 (#475) #127

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@3d3c42e5aac5ba805825da76410c181273ba90b1 # 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 }}