Skip to content

Commit 40688f9

Browse files
authored
fix: update fusion url to fusion2 (#539)
* fix: update fusion url to fusion2 * Update common.py
1 parent d8865e9 commit 40688f9

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

releasetool/commands/common.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -169,11 +169,8 @@ def release_exists(ctx: TagContext) -> bool:
169169

170170

171171
def publish_via_kokoro(ctx: TagContext) -> None:
172-
kokoro_url = "https://fusion.corp.google.com/projectanalysis/current/KOKORO/"
173-
174-
ctx.fusion_url = parse.urljoin(
175-
kokoro_url, parse.quote_plus(f"prod:{ctx.kokoro_job_name}")
176-
)
172+
kokoro_url = "https://fusion2.corp.google.com/ci;prev=s/kokoro/prod"
173+
ctx.fusion_url = f"${kokoro_url}:${parse.quote_plus(ctx.kokoro_job_name)}"
177174

178175
if ctx.interactive:
179176
pyperclip.copy(ctx.release_tag)

0 commit comments

Comments
 (0)