Workflow to Trigger Release #24
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: Workflow to Trigger Release | |
on: | |
workflow_dispatch: | |
inputs: | |
release_tag: | |
description: The tag name for the release | |
required: true | |
type: string | |
artifact_names: | |
description: The names of the artifacts to fetch | |
required: false | |
type: string | |
default: | | |
manifest.yaml | |
repository: | |
description: The name of the repository | |
required: false | |
type: string | |
default: calyptia/core-operator | |
jobs: | |
release: | |
name: Create a public release for calyptia/core-operator. | |
uses: ./.github/workflows/call-create-release.yaml | |
with: | |
release_tag: ${{ github.event.inputs.release_tag }} | |
artifact_names: ${{ github.event.inputs.artifact_names }} | |
repository: ${{ github.event.inputs.repository }} | |
secrets: | |
ci-pat: ${{ secrets.CI_PAT }} |