From 999e0ac9566b603cdad28d4769fbe1abb40e91eb Mon Sep 17 00:00:00 2001 From: "Brian J. Murrell" Date: Mon, 28 Oct 2024 17:11:41 -0400 Subject: [PATCH] updates Required-githooks: true this-is-Signed-off-by: Brian J. Murrell Run-GHA: true Skip-PR-comments: true --- .github/actions/variables-from-env/action.yml | 24 ++++++++++++------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/.github/actions/variables-from-env/action.yml b/.github/actions/variables-from-env/action.yml index 07eab69f477..e27a4149291 100644 --- a/.github/actions/variables-from-env/action.yml +++ b/.github/actions/variables-from-env/action.yml @@ -1,14 +1,22 @@ name: 'Create Variables from Env Variables' description: 'Variables from Env Variables' outputs: - NAME: ${{ env.NAME }} - DISTROS: ${{ env.DISTROS }} - EL8_BUILD_VERSION: ${{ env.EL8_BUILD_VERSION }} - EL9_BUILD_VERSION: ${{ env.EL9_BUILD_VERSION }} - LEAP15_VERSION: ${{ env.LEAP15_VERSION }} - PACKAGING_DIR: ${{ env.PACKAGING_DIR }} - COVFN_DISABLED: ${{ env.COVFN_DISABLED }} - TEST_TAG: ${{ env.TEST_TAG }} + NAME: + value: ${{ env.NAME }} + DISTROS: + value: ${{ env.DISTROS }} + EL8_BUILD_VERSION: + value: ${{ env.EL8_BUILD_VERSION }} + EL9_BUILD_VERSION: + value: ${{ env.EL9_BUILD_VERSION }} + LEAP15_VERSION: + value: ${{ env.LEAP15_VERSION }} + PACKAGING_DIR: + value: ${{ env.PACKAGING_DIR }} + COVFN_DISABLED: + value: ${{ env.COVFN_DISABLED }} + TEST_TAG: + value: ${{ env.TEST_TAG }} runs: using: "composite" # What a dumb jobs this is