Skip to content

Commit fe6b7e7

Browse files
Add release workflow scaffold for workflow_dispatch registration
Minimal placeholder so GitHub registers the workflow_dispatch trigger on main. The full implementation is in PR #23. Part of CI-98 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent c342580 commit fe6b7e7

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Release Helm Chart
2+
3+
run-name: Release Helm chart ${{ inputs.version }}${{ inputs.draft && '-draft' || '' }}
4+
5+
on:
6+
workflow_dispatch:
7+
inputs:
8+
version:
9+
type: string
10+
description: Release version (e.g., 0.6.15). Used for chart version, appVersion, and image tags.
11+
required: true
12+
draft:
13+
type: boolean
14+
description: Create a draft release (chart version gets -draft suffix)
15+
default: true
16+
17+
jobs:
18+
release:
19+
name: Package and publish Helm chart
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: Placeholder
23+
run: echo "This is a scaffold. The full implementation is in PR #23."

0 commit comments

Comments
 (0)