mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
Don't use an alias for prod deployment
It prevents deployment to the main domain
This commit is contained in:
4
.github/deploy_to_netlify.py
vendored
4
.github/deploy_to_netlify.py
vendored
@ -43,11 +43,10 @@ elif is_push:
|
||||
branch = m.group(1)
|
||||
sha = github_event["head_commit"]["id"]
|
||||
|
||||
command.extend(["--alias", f"br-{branch[0:23]}-{sha[0:10]}"])
|
||||
|
||||
if branch in ("main", "master"):
|
||||
command.extend(["--prod"])
|
||||
else:
|
||||
command.extend(["--alias", f"br-{branch[0:23]}-{sha[0:10]}"])
|
||||
context_suffix = " (push)"
|
||||
else:
|
||||
# TODO
|
||||
@ -59,6 +58,7 @@ proc = subprocess.run(command, capture_output=True)
|
||||
|
||||
output = proc.stdout.decode()
|
||||
assert proc.returncode == 0, (output, proc.stderr.decode())
|
||||
print(output)
|
||||
|
||||
m = re.search("https://[^ ]*--[^ ]*netlify.app", output)
|
||||
assert m
|
||||
|
Reference in New Issue
Block a user