Files
headlamp-kube-vip-plugin/.github/workflows/release.yaml
T
Hugh Hackman 236638c049 feat: add upstream appVersion tracking to release workflow
Configures the reusable release workflow to fetch the latest release
tag from kube-vip/kube-vip and set appVersion in artifacthub-pkg.yml.
This keeps our Artifact Hub listing in sync with the upstream project.
2026-03-08 12:29:18 +00:00

20 lines
383 B
YAML

name: Release
on:
workflow_dispatch:
inputs:
version:
description: 'Release version (e.g. 1.0.0)'
required: true
type: string
permissions:
contents: write
jobs:
release:
uses: privilegedescalation/.github/.github/workflows/plugin-release.yaml@main
with:
version: ${{ inputs.version }}
upstream-repo: 'kube-vip/kube-vip'