We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65b5bd9 commit d57ce2cCopy full SHA for d57ce2c
1 file changed
.github/workflows/release.yml
@@ -80,9 +80,10 @@ jobs:
80
git add -A
81
git diff --cached --quiet || git commit --amend --no-verify --no-edit
82
83
- # Pull latest changes and rebase our commit on top
84
- git pull --rebase origin main
85
- git push
+ # Refresh the tracking ref before rebasing so push uses the current remote tip.
+ git fetch origin main:refs/remotes/origin/main
+ git rebase origin/main
86
+ git push origin HEAD:main
87
88
- name: Install VS Code extension dependencies
89
working-directory: ./flowquery-vscode
0 commit comments