File tree Expand file tree Collapse file tree 1 file changed +3
-18
lines changed
Expand file tree Collapse file tree 1 file changed +3
-18
lines changed Original file line number Diff line number Diff line change @@ -10,24 +10,10 @@ jobs:
1010 hash-files :
1111 runs-on : windows-latest
1212 steps :
13- - name : Fetch Simba 2 download URL
14- run : |
15- $url = "https://raw.githubusercontent.com/Villavu/Simba-Build-Archive/refs/heads/main/latest.win64"
16- $response = Invoke-WebRequest -Uri $url -UseBasicParsing
17- $baseUrl = $response.Content.Trim() -replace 'Win64\.zip\?raw=true$', ''
18- Write-Output "Base URL: $baseUrl"
19- echo "::set-output name=baseUrl::$baseUrl"
20- New-Item -Path ".\Includes" -ItemType Directory
21-
22- - name : Download Simba 2.0 (64-bit)
13+ - name : Hash all eligible files
14+ shell : bash
2315 run : |
24- $baseUrl = "${{ steps.simba-url.outputs.baseUrl }}"
25- $downloadUrl = "$baseUrl" + "Win64.zip?raw=true"
26- Write-Output "Download URL (64-bit): $downloadUrl"
27- $outputFile = ".\download.zip"
28- Invoke-WebRequest -Uri $downloadUrl -OutFile $outputFile
29- Expand-Archive -Path $outputFile -DestinationPath . -Force
30- Remove-Item -Path $outputFile -Force
16+ ls -a
3117
3218 - name : Checkout repository
33193723 - name : Hash all eligible files
3824 shell : bash
3925 run : |
40- ls -a
4126 ./Simba-Win64.exe --extractopenssl --run ./wasp-data/tools/hash-files.simba
4227
4328 - name : Commit hash files
You can’t perform that action at this time.
0 commit comments