mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-23 10:50:01 +00:00
ci(win): fix codesigntool download check
This commit is contained in:
parent
df9305c187
commit
ad8061bc9d
1 changed files with 3 additions and 3 deletions
4
.github/workflows/main.yml
vendored
4
.github/workflows/main.yml
vendored
|
@ -117,9 +117,9 @@ jobs:
|
||||||
echo "not release, skipping code signing"
|
echo "not release, skipping code signing"
|
||||||
exit 0;
|
exit 0;
|
||||||
}
|
}
|
||||||
mkdir CodeSignTool
|
|
||||||
cd .\CodeSignTool
|
|
||||||
if (!(Test-Path ".\CodeSignTool\CodeSignTool.bat" -PathType Leaf)) {
|
if (!(Test-Path ".\CodeSignTool\CodeSignTool.bat" -PathType Leaf)) {
|
||||||
|
mkdir CodeSignTool
|
||||||
|
cd .\CodeSignTool
|
||||||
Invoke-WebRequest -Uri https://www.ssl.com/download/codesigntool-for-windows/ -UseBasicParsing -OutFile ".\CodeSignTool.zip"
|
Invoke-WebRequest -Uri https://www.ssl.com/download/codesigntool-for-windows/ -UseBasicParsing -OutFile ".\CodeSignTool.zip"
|
||||||
7z x CodeSignTool.zip
|
7z x CodeSignTool.zip
|
||||||
Remove-Item CodeSignTool.zip
|
Remove-Item CodeSignTool.zip
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue