Skip to content

Commit

Permalink
CI for Helm releases
Browse files Browse the repository at this point in the history
  • Loading branch information
emersonian committed Nov 5, 2024
1 parent a999c25 commit 2ef08cd
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release Charts
on:
push:
branches:
- main
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Set up Helm
uses: azure/[email protected]
with:
version: v3.9.2
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.HELM_RELEASE_TOKEN }}"

0 comments on commit 2ef08cd

Please sign in to comment.