mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 07:03:16 +00:00
Update ci script
This commit is contained in:
parent
c6490f5847
commit
8700191866
2 changed files with 9 additions and 8 deletions
|
@ -30,7 +30,7 @@ It should be detected automatically as long as you use steam version of the game
|
|||
notes.p("There is a button in bottom-left corner on noita-proxy's main screen that allows to auto-update to a new version when one is available")
|
||||
|
||||
print()
|
||||
notes_path = "/tmp/rnotes.md"
|
||||
notes_path = "./last_release_notes.md"
|
||||
with open(notes_path, "w") as f:
|
||||
print(notes.gen_md(), file=f)
|
||||
|
||||
|
@ -45,9 +45,11 @@ def main():
|
|||
exit(1)
|
||||
|
||||
subprocess.run(["git", "pull"])
|
||||
subprocess.run(["git", "commit", "-am", "Automated commit: "+tag])
|
||||
|
||||
|
||||
notes_path = generate_notes(tag)
|
||||
|
||||
subprocess.run(["git", "add", "-A"])
|
||||
subprocess.run(["git", "commit", "-am", "Automated commit: "+tag])
|
||||
|
||||
subprocess.check_call(["git", "tag", "-a", "-F", notes_path, tag ])
|
||||
subprocess.check_call(["git", "push", "--follow-tags"])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue