Skip to content

Release Helm Charts #1453

Release Helm Charts

Release Helm Charts #1453

Workflow file for this run

name: Release Helm Charts
on:
workflow_dispatch:
workflow_run:
workflows: ["Chart-Testing", "Datree Policy Checks"]
branches: ["main"]
types: ["completed"]
jobs:
release2github:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout git repository
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@v3
- name: Add Helm repositories
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add christianknell https://christianknell.github.io/helm-charts/
helm repo add cnieg https://cnieg.github.io/helm-charts/
- name: Update dependencies
run: find charts/ ! -path charts/ -maxdepth 1 -type d -exec helm dependency update {} \;
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
release2chartmuseum:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- name: checkout Git repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Helm
uses: azure/setup-helm@v3
- name: Add Helm repository
run: helm repo add christianknell https://charts.knell.it
- name: Update dependencies
run: find charts/ ! -path charts/ -maxdepth 1 -type d -exec helm dependency update {} \;
- name: Install Helm plugin helm-push
run: helm plugin install https://github.com/chartmuseum/helm-push
- name: Push current version to Helm repository
run: |
cd charts
for chart in */;
do
cd $chart
helm cm-push --force . https://charts.knell.it
cd ..
done
env:
HELM_REPO_USERNAME: '${{ secrets.CHARTMUSEUM_USER }}'
HELM_REPO_PASSWORD: '${{ secrets.CHARTMUSEUM_PASSWORD }}'