LibreTube/.github/uploader.py
2022-09-24 16:33:32 +05:30

9 lines
251 B
Python

from os import system as run
import tgconfig
if tgconfig.GH_REPO.lower() == "libre-tube/libretube":
run("git add -f *")
run('git commit -m "WORKFLOW: ALPHA BUILDS"')
run("git push -u")
else:
print("Official Repo not Detected")