Use access token for pushing
This commit is contained in:
parent
f4c2da894b
commit
743600b94e
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
# Mirror repositories to Github (Fuck M$, get it straight)
|
# Mirror repositories to Github (Fuck M$, get it straight)
|
||||||
|
|
||||||
from os import chdir, listdir
|
from os import chdir, environ, listdir
|
||||||
|
|
||||||
from abralib import (
|
from abralib import (
|
||||||
CLONES_PATH,
|
CLONES_PATH,
|
||||||
@ -31,10 +31,16 @@ def main():
|
|||||||
|
|
||||||
log.info(f"Mirroring {app}...")
|
log.info(f"Mirroring {app}...")
|
||||||
|
|
||||||
|
token = environ.get("GITHUB_ACCESS_TOKEN")
|
||||||
|
remote = (
|
||||||
|
f"https://decentral1se:{token}@github.com/Autonomic-Cooperative/{app}.git"
|
||||||
|
)
|
||||||
|
|
||||||
_run_cmd(
|
_run_cmd(
|
||||||
f"git remote add github git@github.com:Autonomic-Cooperative/{app}.git || true",
|
f"git remote add github {remote} || true",
|
||||||
shell=True,
|
shell=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
_run_cmd("git push github --all")
|
_run_cmd("git push github --all")
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user