Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
MehVahdJukaar committed Aug 4, 2024
1 parent 638c90a commit 94d98ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Sun Aug 04 07:44:30 UTC 2024
#Sun Aug 04 07:46:08 UTC 2024
mapping_version=1.20.1
version=1.0
mod_name=Zeta
Expand Down
4 changes: 2 additions & 2 deletions push_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def main():
for line in lines:
changelog = changelog + '-m "'+line+'" '

tag_success = os.system('git tag -a release-{}-{}-{}b {}'.format(mc_version, version, build_number, changelog))
tag_success = os.system('git tag -a release-{}-{}-{}c {}'.format(mc_version, version, build_number, changelog))

if tag_success != 0:
print('Failed to create tag')
Expand All @@ -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-{}-{}-{}'.format(mc_version, version, build_number))
os.system('git push origin main release-{}-{}-{}c'.format(mc_version, version, build_number))

if __name__ == '__main__':
main()

0 comments on commit 94d98ee

Please sign in to comment.