Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix release script #7224

Merged
merged 1 commit into from
Sep 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ if (args.dry_run) {

if (args.steps.indexOf('tag') > -1) {
// push the version commit & tag to upstream
execSync('git push upstream --tags', execOptions);
execSync('git push upstream --follow-tags', execOptions);
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Docs: https://git-scm.com/docs/git-push#Documentation/git-push.txt---follow-tags

Essentially this should push all main commits to upstream, and also push the tag created from the previous npm version step as well

}

if (args.steps.indexOf('publish') > -1) {
Expand Down
Loading