checking upload in bash

rejbasket/test-bash-signing
rejbasket 2025-03-27 21:20:39 +01:00
rodzic ef43512f18
commit f4090317ce
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -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" \