GH-Hosted: Debug zip creation

This commit is contained in:
aboyko
2023-07-14 16:02:28 -04:00
parent bdf7b0fa89
commit 7bbdba9f93
2 changed files with 7 additions and 13 deletions

View File

@@ -12,7 +12,12 @@ unzip -q $file -d ./${destination_folder_name}
echo "Successfully extracted ${filename}"
sts_folder=`find ./${destination_folder_name} -maxdepth 1 -type d -name 'sts-*' -print -quit`
echo "Found STS distro folder: ${sts_folder}"
echo "About to sign win exe file: ./${sts_folder}/SpringToolSuite4.exe"
${workdir}/.github/scripts/sign-exe.sh ./${sts_folder}/SpringToolSuite4.exe ${sts_folder}/SpringToolSuite4.exe
echo "Contents of ${destination_folder_name}"
ls ./${destination_folder_name}
echo "Adding to zip contents of a folder ${destination_folder_name}"
zip -r -q $file ./${destination_folder_name}
echo "Successfully zipped ${destination_folder_name} into ${file}"