Skip to content

Commit

Permalink
fix(gha): remove whitespace from BRANCH in release.yml (#6271) (#6272)
Browse files Browse the repository at this point in the history
(cherry picked from commit fdbba41)

Co-authored-by: David Byron <82477955+dbyron-sf@users.noreply.github.com>
  • Loading branch information
mergify[bot] and dbyron-sf committed Aug 18, 2024
1 parent 46c42ce commit 97f4483
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ jobs:
echo "exactly one branch required to release clouddriver, but there are $NUM_BRANCHES ($BRANCHES)"
exit 1
fi
echo "exactly one branch ($BRANCHES)"
echo BRANCH=$BRANCHES >> $GITHUB_ENV
BRANCH=$(echo $BRANCHES | xargs)
echo "exactly one branch ($BRANCH)"
echo BRANCH="$BRANCH" >> $GITHUB_ENV
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down

0 comments on commit 97f4483

Please sign in to comment.