3946f8d64d
Configures the reusable release workflow to fetch the latest release tag from rook/rook and set appVersion in artifacthub-pkg.yml. This keeps our Artifact Hub listing in sync with the upstream project. Co-authored-by: Hugh Hackman <hugh@privilegedescalation.dev>
20 lines
375 B
YAML
20 lines
375 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: 'rook/rook'
|