Skip to content

Commit

Permalink
fix(gha): remove whitespace from BRANCH in release.yml (#6271)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbyron-sf committed Aug 18, 2024
1 parent 33323d4 commit fdbba41
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 fdbba41

Please sign in to comment.