Skip to content

Merge pull request #324 from CAAPIM/gateway_111 #84

Merge pull request #324 from CAAPIM/gateway_111

Merge pull request #324 from CAAPIM/gateway_111 #84

Workflow file for this run

name: Release Charts
on:
push:
branches:
- stable
jobs:
release-charts:
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: Setup Helm
uses: azure/[email protected]
with:
version: v3.13.3
- name: Add Repositories
run: .github/helm-repo.sh
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: charts
env:
CR_TOKEN: "${{ secrets.ACTIONS_TOKEN }}"