Skip to content

Commit 1ee7d7d

Browse files
committed
fix: typos
1 parent 879de78 commit 1ee7d7d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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"
@@ -39,8 +39,8 @@ jobs:
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"

0 commit comments

Comments
 (0)