mirror of
https://github.com/MiSTer-devel/Distribution_MiSTer.git
synced 2026-05-24 03:03:20 +00:00
Adding a couple of env vars
This commit is contained in:
committed by
GitHub
parent
fbec8bd73a
commit
18030e7fec
4
.github/calculate_db.py
vendored
4
.github/calculate_db.py
vendored
@@ -38,8 +38,8 @@ def main(dryrun):
|
||||
print('sha: %s' % sha)
|
||||
|
||||
db_url = envvar('DB_URL')
|
||||
db_file_zip = Path(db_url).name
|
||||
db_file_json = Path(db_url).stem
|
||||
db_file_zip = os.getenv('DB_ZIP_NAME', Path(db_url).name)
|
||||
db_file_json = os.getenv('DB_JSON_NAME', Path(db_url).stem)
|
||||
db_id = envvar('DB_ID')
|
||||
|
||||
tags = Tags()
|
||||
|
||||
Reference in New Issue
Block a user