refactor(organization): removed custom secret-manager mock & generate… #73
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2025 Deutsche Telekom IT GmbH | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Publish Helm Charts (Manual) | |
on: | |
workflow_dispatch: | |
inputs: | |
chart_path: | |
description: 'Path to the Helm chart directory (e.g., common-server/helm)' | |
required: true | |
default: 'common-server/helm' | |
version: | |
description: 'Chart version to use (overrides Chart.yaml)' | |
required: false | |
push: | |
paths: | |
- 'common-server/helm/**' | |
- '.github/workflows/helm-publish.yaml' | |
- '.github/workflows/helm-release.yaml' | |
permissions: | |
packages: write | |
contents: read | |
concurrency: | |
group: helm-publish-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
common-server-chart: | |
name: Publish Common Server Chart | |
if: github.event_name == 'workflow_dispatch' && github.event.inputs.chart_path == 'common-server/helm' || github.event_name == 'push' | |
uses: ./.github/workflows/helm-release.yaml | |
with: | |
chart_path: 'common-server/helm' | |
version: ${{ github.event.inputs.version }} |