build
This commit is contained in:
parent
0cad21e749
commit
0b38a46ace
1 changed files with 36 additions and 0 deletions
36
tools/upload_assest.py
Normal file
36
tools/upload_assest.py
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
import logging
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
from datetime import datetime
|
||||||
|
from pathlib import Path
|
||||||
|
from github import Github
|
||||||
|
|
||||||
|
logging.basicConfig(level=logging.INFO, format="%(levelname)s: %(message)s")
|
||||||
|
|
||||||
|
api_key = os.getenv("api_key", None)
|
||||||
|
current_date = datetime.today().strftime("%Y-%m-%d")
|
||||||
|
|
||||||
|
path = list(Path().cwd().glob("out/*.iso"))[0].as_posix()
|
||||||
|
|
||||||
|
repo_name = os.getenv("name", None)
|
||||||
|
release_name = os.getenv("release_name", None)
|
||||||
|
|
||||||
|
logging.info("Starting at %s", current_date)
|
||||||
|
|
||||||
|
if not (repo_name and api_key and release_name):
|
||||||
|
logging.error(
|
||||||
|
"'repo_name'/'api_key'/'release_name' not found in your envs."
|
||||||
|
"please add this and run again"
|
||||||
|
)
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
|
gh = Github(api_key)
|
||||||
|
repo = gh.get_repo(f"parchlinux/{repo_name}")
|
||||||
|
|
||||||
|
release = repo.get_release(release_name)
|
||||||
|
|
||||||
|
logging.info("statrting Upload ISO to release")
|
||||||
|
|
||||||
|
release.upload_asset(path=path)
|
||||||
|
logging.info("ISO upload is done")
|
Loading…
Add table
Reference in a new issue