Quote variables in temporary branch creation

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
Edward Firmo
2024-12-21 13:54:51 +01:00
committed by GitHub
parent a23a2db352
commit be23a5a0fd

View File

@@ -31,8 +31,8 @@ jobs:
- name: Create Temporary Branch
run: |
TEMP_BRANCH="temp/version-bump-$(uuidgen)"
echo "TEMP_BRANCH=$TEMP_BRANCH" >> $GITHUB_ENV
git checkout -b "$TEMP_BRANCH"
echo "TEMP_BRANCH=${TEMP_BRANCH}" >> "${GITHUB_ENV}"
git checkout -b "${TEMP_BRANCH}"
- name: Bump Version
run: |