Skip to content
Snippets Groups Projects
Commit e127c998 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Daily-builds are now a branch, not a tag, as is the way of Git

parent 71c0a587
No related branches found
No related tags found
No related merge requests found
......@@ -220,9 +220,9 @@ send_email(system.platform + " builds successful in " + elapsed_time(time() - st
chdir(temp_dir);
var comment = "Successful build on " + system_description;
system.exec("git tag -m \"" + comment + "\" -a goodbuild_" + platform + "_" + date_str);
system.exec("git push --tags");
system.exec("git checkout -b dailybuild_" + platform);
system.exec("git merge master");
system.exec("git push --set-upstream origin dailybuild_" + platform);
var dest = file_area.dir["sbbs"].path+archive;
log(LOG_INFO,format("Copying %s to %s",archive,dest));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment