Skip to content

[tp-helm-charts][PCP-8406]-Bumping up tp-cp-recipes after adding new … #118

[tp-helm-charts][PCP-8406]-Bumping up tp-cp-recipes after adding new …

[tp-helm-charts][PCP-8406]-Bumping up tp-cp-recipes after adding new … #118

name: Release Charts
on:
push:
branches:
- 'main'
- 'releases/**'
paths:
- 'charts/**'
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v4
with:
version: '3.15.3'
- name: Add dependency chart repos
run: |
helm repo add tibco-platform https://tibcosoftware.github.io/tp-helm-charts/
- name: Run chart-releaser
uses: helm/[email protected]
with:
skip_existing: true
packages_with_index: false
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"