From 0b75570657b1827737df812f418fda99cd56e03e Mon Sep 17 00:00:00 2001 From: yylyyl Date: Mon, 25 Sep 2023 14:57:10 -0400 Subject: [PATCH] Rename variables in the release workflow --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 82b2636..45452fd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ on: required: true description: The git ref to build type: string - buildnum: + build_num: required: true description: The build number type: string @@ -35,7 +35,7 @@ jobs: - name: Build project run: | SHA=$(git rev-parse HEAD) - export REACT_APP_CONTAINERUP_BUILD=${{ inputs.buildnum }} + export REACT_APP_CONTAINERUP_BUILD=${{ inputs.build_num }} export REACT_APP_CONTAINERUP_COMMIT=${SHA::7} echo BUILD=${REACT_APP_CONTAINERUP_BUILD} echo COMMIT=${REACT_APP_CONTAINERUP_COMMIT}