Skip to content

Merge pull request #148 from Portkey-AI/update/version #41

Merge pull request #148 from Portkey-AI/update/version

Merge pull request #148 from Portkey-AI/update/version #41

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
paths:
- 'charts/portkey-app/Chart.yaml'
- 'charts/portkey-gateway/Chart.yaml'
jobs:
release:
permissions:
contents: write
packages: write
id-token: write
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Fetch history
run: git fetch --prune --unshallow
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: v3.12.0
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
with:
skip_existing: true
charts_dir: charts
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_GENERATE_RELEASE_NOTES: true