Skip to content

Commit ee009b8

Browse files
committed
Fix typo
1 parent c84f966 commit ee009b8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/bump.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,15 @@ jobs:
8282
run: |
8383
NEW_BRANCH="update/bump-dependency-versions-$(date +'%d-%m-%Y')"
8484
git checkout -b "$NEW_BRANCH"
85+
echo "::set-output name=new_branch::$NEW_BRANCH"
8586
8687
- name: 🔍 Check for changes and commit
8788
run: |
8889
git diff --quiet || git commit -am "Update dependencies"
8990
9091
- name: 🚀 Push changes
9192
if: success()
92-
run: git push origin "$NEW_BRANCH"
93+
run: git push origin ${{ steps.create_branch.outputs.new_branch }}
9394

9495
- name: 🔀 Create Pull Request
9596
uses: repo-sync/pull-request@v2

0 commit comments

Comments
 (0)