From e4cbc8d675cfe89a92e94e4892af77122ab57fee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4=20=28Donny=29?= Date: Wed, 12 Jun 2024 23:26:46 +0900 Subject: [PATCH] chore(ci): Fix binary upload action --- scripts/cli_upload_gh_release.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/cli_upload_gh_release.sh b/scripts/cli_upload_gh_release.sh index f34b596dd4d6..578bd51fc1e6 100755 --- a/scripts/cli_upload_gh_release.sh +++ b/scripts/cli_upload_gh_release.sh @@ -1,7 +1,9 @@ #!/bin/sh +cd ./packages/core/ + # Naive substitution to napi artifacts for the cli binary. -for filename in ./packages/core/artifacts_cli/* +for filename in artifacts_cli/* do echo "Trying to upload $filename"