From 43d14877caa091caaf05a21a101004b6092b258d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jeff=28=EA=B9=80=EC=A3=BC=EC=83=81=29?= <49609358+joosangkim@users.noreply.github.com> Date: Thu, 30 May 2024 08:49:39 +0900 Subject: [PATCH] Update main.ts --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index e1bcb5f..4bb3e0c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -72,7 +72,7 @@ function scrubSecrets(input: string): string { async function setupArgoCDCommand(): Promise<(params: string) => Promise> { const argoBinaryPath = 'bin/argo'; await tc.downloadTool( - `https://github.com?/argoproj/argo-cd/releases/download/${VERSION}/argocd-${PLATFORM}-${ARCH}`, + `https://github.com/argoproj/argo-cd/releases/download/${VERSION}/argocd-${PLATFORM}-${ARCH}`, argoBinaryPath ); fs.chmodSync(path.join(argoBinaryPath), '755');