From dfc3687246e4989584fde72eb7c1c009dd45a31e Mon Sep 17 00:00:00 2001 From: Vince Grassia <593223+vgrassia@users.noreply.github.com> Date: Wed, 1 Jun 2022 15:12:19 -0400 Subject: [PATCH] Fix variable substitution (#2766) --- .github/workflows/version-bump.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/version-bump.yml b/.github/workflows/version-bump.yml index 0cd915cdb6..5b78ab0cb3 100644 --- a/.github/workflows/version-bump.yml +++ b/.github/workflows/version-bump.yml @@ -107,10 +107,10 @@ jobs: run: | git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" git config --local user.name "github-actions[bot]" - git commit -m "Bumped $CLIENT version to ${{ github.event.inputs.version_number }}" -a + git commit -m "Bumped ${CLIENT} version to ${{ github.event.inputs.version_number }}" -a - name: Push changes - run: git push -u origin $CLIENT_version_bump_${{ github.event.inputs.version_number }} + run: git push -u origin ${CLIENT}_version_bump_${{ github.event.inputs.version_number }} - name: Create Bump Version PR env: