dbbabef94a
* ci: switch to org-level reusable workflows * chore: retrigger CI after reusable workflows merged * feat: add workflow_dispatch to CI workflow --------- Co-authored-by: gandalf-the-greybeard[bot] <gandalf-the-greybeard[bot]@users.noreply.github.com> Co-authored-by: hugh-hackman[bot] <266376744+hugh-hackman[bot]@users.noreply.github.com> Co-authored-by: hugh-hackman[bot] <hugh-hackman[bot]@users.noreply.github.com>
20 lines
377 B
YAML
20 lines
377 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: fenio/tns-csi
|