Skip to content

Commit

Permalink
👷(helm) change github action
Browse files Browse the repository at this point in the history
Use another github action to avoid chart replacement to every push
  • Loading branch information
rouja committed Dec 24, 2024
1 parent a9b16ed commit af5e145
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions .github/workflows/release-helm-chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Release Charts
name: Release Chart
run-name: Release Chart

on:
push:
branches:
- main
paths:
- src/helm/meet/**

jobs:
release:
Expand All @@ -21,9 +22,14 @@ jobs:
- name: Cleanup
run: rm -rf ./src/helm/extra

- name: Publish Helm charts
uses: stefanprodan/[email protected]
- name: Install Helm
uses: azure/setup-helm@v4
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: ./src/helm/
linting: off
token: ${{ secrets.GITHUB_TOKEN }}
charts_dir: ./src/helm
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit af5e145

Please sign in to comment.