mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Fine tune publishing scripts
This commit is contained in:
parent
65ab026f25
commit
4d88b5121c
3 changed files with 6 additions and 6 deletions
4
dist/chromium/publish-beta.py
vendored
4
dist/chromium/publish-beta.py
vendored
|
|
@ -43,9 +43,9 @@ github_owner = 'gorhill'
|
||||||
github_repo = 'uBlock'
|
github_repo = 'uBlock'
|
||||||
|
|
||||||
# Load/save auth secrets
|
# Load/save auth secrets
|
||||||
# The build directory is excluded from git
|
# The tmp directory is excluded from git
|
||||||
ubo_secrets = dict()
|
ubo_secrets = dict()
|
||||||
ubo_secrets_filename = os.path.join(projdir, 'dist', 'build', 'ubo_secrets')
|
ubo_secrets_filename = os.path.join(projdir, 'tmp', 'ubo_secrets')
|
||||||
if os.path.isfile(ubo_secrets_filename):
|
if os.path.isfile(ubo_secrets_filename):
|
||||||
with open(ubo_secrets_filename) as f:
|
with open(ubo_secrets_filename) as f:
|
||||||
ubo_secrets = json.load(f)
|
ubo_secrets = json.load(f)
|
||||||
|
|
|
||||||
4
dist/firefox/publish-signed-beta.py
vendored
4
dist/firefox/publish-signed-beta.py
vendored
|
|
@ -69,9 +69,9 @@ github_owner = 'gorhill'
|
||||||
github_repo = 'uBlock'
|
github_repo = 'uBlock'
|
||||||
|
|
||||||
# Load/save auth secrets
|
# Load/save auth secrets
|
||||||
# The build directory is excluded from git
|
# The tmp directory is excluded from git
|
||||||
ubo_secrets = dict()
|
ubo_secrets = dict()
|
||||||
ubo_secrets_filename = os.path.join(projdir, 'dist', 'build', 'ubo_secrets')
|
ubo_secrets_filename = os.path.join(projdir, 'tmp', 'ubo_secrets')
|
||||||
if os.path.isfile(ubo_secrets_filename):
|
if os.path.isfile(ubo_secrets_filename):
|
||||||
with open(ubo_secrets_filename) as f:
|
with open(ubo_secrets_filename) as f:
|
||||||
ubo_secrets = json.load(f)
|
ubo_secrets = json.load(f)
|
||||||
|
|
|
||||||
4
dist/mv3/firefox/publish-signed-beta.py
vendored
4
dist/mv3/firefox/publish-signed-beta.py
vendored
|
|
@ -64,9 +64,9 @@ github_owner = 'gorhill'
|
||||||
github_repo = 'uBlock'
|
github_repo = 'uBlock'
|
||||||
|
|
||||||
# Load/save auth secrets
|
# Load/save auth secrets
|
||||||
# The build directory is excluded from git
|
# The tmp directory is excluded from git
|
||||||
ubo_secrets = dict()
|
ubo_secrets = dict()
|
||||||
ubo_secrets_filename = os.path.join(projdir, 'dist', 'build', 'ubo_secrets')
|
ubo_secrets_filename = os.path.join(projdir, 'tmp', 'ubo_secrets')
|
||||||
if os.path.isfile(ubo_secrets_filename):
|
if os.path.isfile(ubo_secrets_filename):
|
||||||
with open(ubo_secrets_filename) as f:
|
with open(ubo_secrets_filename) as f:
|
||||||
ubo_secrets = json.load(f)
|
ubo_secrets = json.load(f)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue