Skip to content

Commit

Permalink
Try vars instead of env
Browse files Browse the repository at this point in the history
Skip-PR-comments: true
Run-GHA: true

Required-githooks: true

Signed-off-by: Brian J. Murrell <[email protected]>
  • Loading branch information
brianjmurrell committed Dec 3, 2024
1 parent 8e3bd97 commit 5d43840
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/rpm-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ jobs:
runs-on: [self-hosted, light]
outputs:
NAME: ${{ env.NAME }}
DISTROS: ${{ env.DISTROS }}
EL8_BUILD_VERSION: ${{ env.EL8_BUILD_VERSION_MASTER }}
EL9_BUILD_VERSION: ${{ env.EL9_BUILD_VERSION_MASTER }}
LEAP15_VERSION: ${{ env.LEAP15_VERSION_MASTER }}
PACKAGING_DIR: ${{ env.PACKAGING_DIR }}
TEST_TAG: ${{ env.TEST_TAG }}
DISTROS: ${{ vars.DISTROS_MASTER }}
EL8_BUILD_VERSION: ${{ vars.EL8_BUILD_VERSION_MASTER }}
EL9_BUILD_VERSION: ${{ vars.EL9_BUILD_VERSION_MASTER }}
LEAP15_VERSION: ${{ vars.LEAP15_VERSION_MASTER }}
PACKAGING_DIR: ${{ vars.PACKAGING_DIR }}
TEST_TAG: ${{ vars.TEST_TAG }}
steps:
- name: Echo
if: false
Expand Down

0 comments on commit 5d43840

Please sign in to comment.