We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6488c90 commit e89b48eCopy full SHA for e89b48e
.github/workflows/build-toolchain.yml
@@ -29,7 +29,7 @@ on:
29
jobs:
30
build:
31
name: Preset ${{ inputs.preset }}${{ inputs.tools && '+t' || '' }}${{ inputs.extras && '+e' || '' }}
32
- runs-on: windows-latest
+ runs-on: windows-2022
33
timeout-minutes: 40
34
steps:
35
- name: Checkout Code
@@ -66,7 +66,7 @@ jobs:
66
$fileHash = (Get-FileHash -Path VS6_VisualStudio6.7z -Algorithm SHA256).Hash
67
Write-Host "Downloaded file SHA256: $fileHash"
68
Write-Host "Expected file SHA256: $env:EXPECTED_HASH"
69
- if ($hash -ne $env:EXPECTED_HASH) {
+ if ($fileHash -ne $env:EXPECTED_HASH) {
70
Write-Error "Hash verification failed! File may be corrupted or tampered with."
71
exit 1
72
}
0 commit comments