From cde247df46734452c266cab7ff235f19a779a7b9 Mon Sep 17 00:00:00 2001 From: farbanas Date: Mon, 20 Feb 2023 17:59:06 -0500 Subject: [PATCH] fix: added inputs prefix to variable in GH workflow --- .github/workflows/update-versions-and-changelog.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update-versions-and-changelog.yaml b/.github/workflows/update-versions-and-changelog.yaml index 143b088d83..5b53babba8 100644 --- a/.github/workflows/update-versions-and-changelog.yaml +++ b/.github/workflows/update-versions-and-changelog.yaml @@ -19,7 +19,7 @@ jobs: - name: checkout-source uses: actions/checkout@v3 with: - ref: "release/${{ release_version }}" + ref: "release/${{ inputs.release_version }}" - name: checkout-ci-tools-repo uses: actions/checkout@v3 @@ -44,6 +44,6 @@ jobs: run: | git config --global user.name "${{ CI_BOT_AUTHOR }}" git config --global user.email "${{ CI_BOT_EMAIL }}" - git checkout -b release/${{ release_version }}-preparation + git checkout -b release/${{ inputs.release_version }}-preparation git commit -am "chore: version bump in preparation for release" - git push -u origin release/${{ release_version }}-preparation + git push -u origin release/${{ inputs.release_version }}-preparation