Skip to content

Commit

Permalink
Merge pull request #2234 from zen-browser/stable
Browse files Browse the repository at this point in the history
Download git objects repo and sign and package windows artifacts
  • Loading branch information
mauro-balades authored Oct 19, 2024
2 parents e36dbde + e3ec2c2 commit b9dd88e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions build/winsign/sign.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,13 @@ mkdir windsign-temp -ErrorAction SilentlyContinue

# Download in parallel

#show output too
Start-Job -Name "DownloadGitObjectsRepo" -ScriptBlock {
git clone https://github.com/zen-browser/windows-binaries.git windsign-temp\windows-binaries
}
param($PWD)
echo "Downloading git objects repo to $PWD\windsign-temp\windows-binaries"
git clone https://github.com/zen-browser/windows-binaries.git $PWD\windsign-temp\windows-binaries
echo "Downloaded git objects repo to"
} -Verbose -ArgumentList $PWD -Debug

gh run download $GithubRunId --name windows-x64-obj-specific -D windsign-temp\windows-x64-obj-specific
echo "Downloaded specific artifacts"
Expand Down Expand Up @@ -108,6 +112,7 @@ cd windsign-temp\windows-binaries
git add .
git commit -m "Sign and package windows artifacts"
git push
cd ..\..

# Cleaning up

Expand Down

0 comments on commit b9dd88e

Please sign in to comment.