mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-23 10:50:01 +00:00
ci(windows): fix downloading signing tool
This commit is contained in:
parent
36a932966b
commit
1dc1544c10
1 changed files with 2 additions and 2 deletions
4
.github/workflows/main.yml
vendored
4
.github/workflows/main.yml
vendored
|
@ -117,13 +117,13 @@ 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)) {
|
||||||
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
|
||||||
Get-ChildItem -Path . | Where-Object { $_.Name -like "CodeSignTool*" } | %{ Rename-Item -LiteralPath $_.FullName -NewName "CodeSignTool" }
|
|
||||||
}
|
}
|
||||||
cd .\CodeSignTool
|
|
||||||
./CodeSignTool.bat sign -credential_id="${{ secrets.ES_CREDENTIAL_ID }}" -username="${{ secrets.ES_USERNAME }}" -password="${{ secrets.ES_PASSWORD }}" -totp_secret="${{ secrets.ES_TOTP_SECRET }}" -input_file_path="${{ github.workspace }}\Binary\x64\Slippi_Dolphin.exe" -override="true"
|
./CodeSignTool.bat sign -credential_id="${{ secrets.ES_CREDENTIAL_ID }}" -username="${{ secrets.ES_USERNAME }}" -password="${{ secrets.ES_PASSWORD }}" -totp_secret="${{ secrets.ES_TOTP_SECRET }}" -input_file_path="${{ github.workspace }}\Binary\x64\Slippi_Dolphin.exe" -override="true"
|
||||||
- name: Package Artifact
|
- name: Package Artifact
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: ${{ github.workspace }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue