From f16739cad5d93af636766eb39e42b5a985ae5c78 Mon Sep 17 00:00:00 2001 From: Eoin Gallinagh Date: Thu, 12 Oct 2023 12:21:52 +0100 Subject: [PATCH] add: Print out parameters used in CodeFlare release workflow --- .github/workflows/project-codeflare-release.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/project-codeflare-release.yml b/.github/workflows/project-codeflare-release.yml index dd94ebcfd..1f8bb0c7d 100644 --- a/.github/workflows/project-codeflare-release.yml +++ b/.github/workflows/project-codeflare-release.yml @@ -37,6 +37,22 @@ on: default: 'redhat-openshift-ecosystem' jobs: + release-parameters: + runs-on: ubuntu-latest + steps: + - name: Release Parameters + run: | + echo "Below are the release parameters set for the workflow:" + echo "Operator Version: ${{ github.event.inputs.operator-version }}" + echo "Replaces: ${{ github.event.inputs.replaces }}" + echo "MCAD Version: ${{ github.event.inputs.mcad-version }}" + echo "CodeFlare SDK Version: ${{ github.event.inputs.codeflare-sdk-version }}" + echo "InstaScale Version: ${{ github.event.inputs.instascale-version }}" + echo "Is Stable: ${{ github.event.inputs.is-stable }}" + echo "CodeFlare Repository Organization: ${{ github.event.inputs.codeflare-repository-organization }}" + echo "Quay Organization: ${{ github.event.inputs.quay-organization }}" + echo "Community Operators Prod Organization: ${{ github.event.inputs.community-operators-prod-organization }}" + release-mcad: runs-on: ubuntu-latest