From dd38934dc6605dfe081bccdea464ee77ab5a3f24 Mon Sep 17 00:00:00 2001 From: MehVahdJukaar Date: Sun, 4 Aug 2024 09:48:13 +0200 Subject: [PATCH] push tag --- push_tag.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/push_tag.py b/push_tag.py index 06bc331..689e331 100644 --- a/push_tag.py +++ b/push_tag.py @@ -23,7 +23,7 @@ def main(): for line in lines: changelog = changelog + '-m "'+line+'" ' - tag_success = os.system('git tag -a release-{}-{}-{}c {}'.format(mc_version, version, build_number, changelog)) + tag_success = os.system('git tag -a release-{}-{}-{} {}'.format(mc_version, version, build_number, changelog)) if tag_success != 0: print('Failed to create tag') @@ -36,7 +36,7 @@ def main(): build.store(f, encoding="utf-8") os.system('git commit -a -m build') - os.system('git push origin main release-{}-{}-{}c'.format(mc_version, version, build_number)) + os.system('git push origin main release-{}-{}-{}'.format(mc_version, version, build_number)) if __name__ == '__main__': main() \ No newline at end of file