Release #1
This file contains 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
name: Release bundles | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: "The version to release, without the leading `v`" | ||
required: true | ||
type: string | ||
previous_version: | ||
description: "The previous version, used for the CVS's `replaces` field, without the leading `v`" | ||
required: true | ||
type: string | ||
jobs: | ||
make_rh_community_bundle: | ||
uses: medik8s/.github/.github/workflows/release_rh_community_bundle.yml@main | ||
secrets: inherit | ||
with: | ||
version: ${{ inputs.version }} | ||
previous_version: ${{ inputs.previous_version }} |