We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8865e9 commit 40688f9Copy full SHA for 40688f9
releasetool/commands/common.py
@@ -169,11 +169,8 @@ def release_exists(ctx: TagContext) -> bool:
169
170
171
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
- )
+ kokoro_url = "https://fusion2.corp.google.com/ci;prev=s/kokoro/prod"
+ ctx.fusion_url = f"${kokoro_url}:${parse.quote_plus(ctx.kokoro_job_name)}"
177
178
if ctx.interactive:
179
pyperclip.copy(ctx.release_tag)
0 commit comments