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

Chore: migrate master to main #15062

Merged
merged 5 commits into from
Oct 15, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: keep the branch name to master for website repo
Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
  • Loading branch information
niteshseram and mdjermanovic authored Sep 14, 2021
commit 8018286c7ff3eb1358caa3d48d24fed304dcb6ab
4 changes: 2 additions & 2 deletions Makefile.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ function commitSiteToGit(tag) {
exec(`git tag ${tag}`);
}

exec("git fetch origin && git rebase origin/main");
exec("git fetch origin && git rebase origin/master");
cd(currentDir);
}

Expand All @@ -249,7 +249,7 @@ function publishSite() {
const currentDir = pwd();

cd(SITE_DIR);
exec("git push origin main --tags");
exec("git push origin master --tags");
cd(currentDir);
}

Expand Down