Skip to content

Commit

Permalink
fix Windows code signing
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Nov 21, 2024
1 parent 0e1c907 commit 03d0e41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ jobs:
aws s3 cp s3://misc.meltymedia/shotcut-build/CodeSignCertificates.pass ./ --no-progress
for EXE in Shotcut/*.exe; do
echo Signing ${EXE}
osslsigncode sign -pkcs12 CodeSignCertificates2023.p12 -readpass CodeSignCertificates.pass -n "Shotcut" -i "https://www.meltytech.com" -t "http://timestamp.digicert.com" -in ${EXE}.exe -out ${EXE}-signed.exe
mv ${EXE}-signed.exe ${EXE}.exe
osslsigncode sign -pkcs12 CodeSignCertificates2023.p12 -readpass CodeSignCertificates.pass -n "Shotcut" -i "https://www.meltytech.com" -t "http://timestamp.digicert.com" -in ${EXE} -out signed-${EXE}
mv signed-${EXE} ${EXE}
done
echo Packaging the portable zip
zip -gr shotcut-win64-$FILENAME_VERSION.zip Shotcut
Expand Down

0 comments on commit 03d0e41

Please sign in to comment.