From f4090317ce5ba24b27303d05556778eaab182aa0 Mon Sep 17 00:00:00 2001 From: rejbasket Date: Thu, 27 Mar 2025 21:20:39 +0100 Subject: [PATCH] checking upload in bash --- bin/windows-binaries-signing | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/windows-binaries-signing b/bin/windows-binaries-signing index 36d35156e..e1181b03b 100755 --- a/bin/windows-binaries-signing +++ b/bin/windows-binaries-signing @@ -10,7 +10,8 @@ upload_exe=$(curl -H "Authorization: Bearer $secrets.SIGNPATH_API_TOKEN" \ -F "ProjectSlug=inkstitch" \ -F "SigningPolicySlug=$SIGNING_POLICY" \ -F "Artifact=@dist/inkstitch/bin/inkstitch.exe" \ - https://app.signpath.io/API/v1/6b880880-2af8-4cf3-a8e7-1b4977c593df/SigningRequests | jq -r '.SigningRequestId') + https://app.signpath.io/API/v1/6b880880-2af8-4cf3-a8e7-1b4977c593df/SigningRequests) +echo ${upload_exe[*]} # create directory for zip and installer build mkdir signed-artifact @@ -31,7 +32,7 @@ upload_installer=$(curl -H "Authorization: Bearer $secrets.SIGNPATH_API_TOKEN" \ -F "SigningPolicySlug=$SIGNING_POLICY" \ -F "ArtifactConfigurationSlug=windows-installer-config" \ -F "Artifact=@artifacts" \ - https://app.signpath.io/API/v1/6b880880-2af8-4cf3-a8e7-1b4977c593df/SigningRequests | jq -r '.SigningRequestId') + https://app.signpath.io/API/v1/6b880880-2af8-4cf3-a8e7-1b4977c593df/SigningRequests) # download of signed inkstitch installer curl -H "Authorization: Bearer $secrets.SIGNPATH_API_TOKEN" \