File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -21,15 +21,15 @@ jobs:
2121 shell : bash
2222 run : |
2323 url="https://raw.githubusercontent.com/Villavu/Simba-Build-Archive/refs/heads/main/latest.win64"
24- baseUrl=$(curl -s "$url" | sed 's/win64 \.zip$//')
24+ baseUrl=$(curl -s "$url" | sed 's/Win64 \.zip?raw=true $//')
2525 echo "Base URL: $baseUrl"
2626 echo "::set-output name=baseUrl::$baseUrl"
2727
2828 - name : Download Simba 2.0 (64-bit)
2929 shell : bash
3030 run : |
31- baseUrl="${{ steps.fetch -url.outputs.baseUrl }}"
32- downloadUrl="${baseUrl}win64 .zip"
31+ baseUrl="${{ steps.simba -url.outputs.baseUrl }}"
32+ downloadUrl="${baseUrl}Win64 .zip?raw=true "
3333 echo "Download URL (64-bit): $downloadUrl"
3434 outputFile="$RUNNER_TEMP/downloaded64.zip"
3535 curl -o "$outputFile" "$downloadUrl"
3939 - name : Download Simba 2.0 (32-bit)
4040 shell : bash
4141 run : |
42- baseUrl="${{ steps.fetch -url.outputs.baseUrl }}"
43- downloadUrl="${baseUrl}win32 .zip"
42+ baseUrl="${{ steps.simba -url.outputs.baseUrl }}"
43+ downloadUrl="${baseUrl}Win32 .zip?raw=true "
4444 echo "Download URL (32-bit): $downloadUrl"
4545 outputFile="$RUNNER_TEMP/downloaded32.zip"
4646 curl -o "$outputFile" "$downloadUrl"
You can’t perform that action at this time.
0 commit comments