add helm chart release workflow

This commit is contained in:
nicktrn
2025-06-23 15:15:25 +01:00
parent 8239580c25
commit fa6b179997
+128
View File
@@ -0,0 +1,128 @@
name: 🧭 Helm Chart Release
on:
push:
tags:
- 'helm-v*'
workflow_dispatch:
inputs:
chart_version:
description: 'Chart version to release'
required: true
type: string
env:
REGISTRY: ghcr.io
CHART_NAME: trigger
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: "3.18.3"
- name: Lint Helm Chart
run: |
helm lint ./hosting/k8s/helm/
- name: Template and Validate
run: |
helm template test-release ./hosting/k8s/helm/ \
--values ./hosting/k8s/helm/values.yaml \
--output-dir /tmp/helm-output
# Validate generated manifests
find /tmp/helm-output -name "*.yaml" -exec kubectl --dry-run=client apply -f {} \;
release:
needs: lint-and-test
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: "3.18.3"
- name: Log in to Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract version from tag or input
id: version
run: |
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
VERSION="${{ github.event.inputs.chart_version }}"
else
VERSION="${{ github.ref_name }}"
VERSION="${VERSION#helm-v}"
fi
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "Releasing version: $VERSION"
- name: Check Chart.yaml version matches release version
run: |
VERSION="${{ steps.version.outputs.version }}"
CHART_VERSION=$(grep '^version:' ./hosting/k8s/helm/Chart.yaml | awk '{print $2}')
echo "Chart.yaml version: $CHART_VERSION"
echo "Release version: $VERSION"
if [ "$CHART_VERSION" != "$VERSION" ]; then
echo "❌ Chart.yaml version does not match release version!"
exit 1
fi
echo "✅ Chart.yaml version matches release version."
- name: Package Helm Chart
run: |
helm package ./hosting/k8s/helm/ --destination /tmp/
- name: Push Helm Chart to GHCR
run: |
VERSION="${{ steps.version.outputs.version }}"
CHART_PACKAGE="/tmp/${{ env.CHART_NAME }}-${VERSION}.tgz"
# Push to GHCR OCI registry
helm push "$CHART_PACKAGE" "oci://${{ env.REGISTRY }}/${{ github.repository_owner }}/charts"
- name: Print Helm Chart URL
run: |
echo "Chart successfully published to:"
echo "oci://${{ env.REGISTRY }}/${{ github.repository_owner }}/charts/${{ env.CHART_NAME }}"
# Experimental GitHub Release step - disabled for now
# - name: Create GitHub Release
# uses: softprops/action-gh-release@v1
# if: github.event_name == 'push'
# with:
# tag_name: ${{ github.ref_name }}
# name: "Helm Chart ${{ steps.version.outputs.version }}"
# body: |
# ## Helm Chart Release ${{ steps.version.outputs.version }}
# ### Installation
# ```bash
# helm upgrade --install trigger \
# oci://${{ env.REGISTRY }}/${{ github.repository_owner }}/charts/${{ env.CHART_NAME }} \
# --version ${{ steps.version.outputs.version }}
# ```
# ### Changes
# See commit history for detailed changes in this release.
# files: |
# /tmp/${{ env.CHART_NAME }}-${{ steps.version.outputs.version }}.tgz
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}