Skip to content

Commit 041889d

Browse files
authored
fix new_brach var
Signed-off-by: Max Raiskii <max.raiskii@meshinspector.com>
1 parent 180eb15 commit 041889d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/vcpkg-auto-update.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ jobs:
6161
6262
# Create new branch
6363
new_branch="vcpkg-update-${{ steps.get-latest-tag.outputs.latest_vcpkg_tag }}"
64+
echo "new_branch=${new_branch}" >> "$GITHUB_OUTPUT"
6465
git checkout -b ${new_branch}
6566
6667
# Search and replace in all files except /thirdparty folder
@@ -84,7 +85,7 @@ jobs:
8485
gh pr create --title "Bump vcpkg to ${{ steps.get-latest-tag.outputs.latest_vcpkg_tag }}" \
8586
--body "This PR updates the vcpkg tag to ${{ steps.get-latest-tag.outputs.latest_vcpkg_tag }}" \
8687
--base master \
87-
--head ${new_branch} \
88+
--head ${{ steps.bump-vcpkg.outputs.new_branch }} \
8889
--label bump-vcpkg \
8990
--reviewer MaxRayskiy,Grantim
9091

0 commit comments

Comments
 (0)