Refactor Helm workflows to trigger on main branch and streamline versioning process
Some checks failed
Helm Chart Release / release-helm (push) Failing after 29s
Build and Deploy / build-web (push) Successful in 38s
Build and Deploy / build-api (push) Successful in 48s
Build and Deploy / build-helm (push) Failing after 7s

This commit is contained in:
d.viti
2025-10-03 02:09:06 +02:00
parent 733826890e
commit e9528217f8
2 changed files with 7 additions and 11 deletions

View File

@@ -88,12 +88,12 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for proper versioning
fetch-depth: 0 # Fetch all history for proper versioning
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: 'latest'
version: "latest"
- name: Update Chart dependencies
run: |

View File

@@ -2,14 +2,10 @@ name: Helm Chart Release
on:
push:
tags:
- 'v*.*.*' # Trigger on version tags like v1.0.0
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
inputs:
version:
description: 'Chart version to release (e.g., 1.0.1)'
required: true
type: string
jobs:
release-helm:
@@ -23,7 +19,7 @@ jobs:
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: 'latest'
version: "latest"
- name: Determine version
id: version