From 69093204b955e54484fba8294c19f82a3e51cb99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mauro=20Balad=C3=A9s?= Date: Sun, 29 Sep 2024 21:54:43 +0300 Subject: [PATCH] Update sign.ps1 script to include git pull command --- build/winsign/sign.ps1 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build/winsign/sign.ps1 b/build/winsign/sign.ps1 index 82f09475d..59ea6cb11 100644 --- a/build/winsign/sign.ps1 +++ b/build/winsign/sign.ps1 @@ -5,6 +5,7 @@ param( $ErrorActionPreference = "Stop" echo "Preparing environment" +git pull --recurse-submodules mkdir windsign-temp -ErrorAction SilentlyContinue echo "Please UNZIP the generic and specific artifacts into windsign-temp" @@ -93,6 +94,12 @@ function SignAndPackage($name) { SignAndPackage specific SignAndPackage generic +echo "All artifacts signed and packaged, ready for release!" +echo "Commiting the changes to the repository" +git add .\.github\workflows\object +git commit -m "Sign and package windows artifacts" +git push + # Cleaning up echo "All done!"