File tree Expand file tree Collapse file tree 1 file changed +6
-10
lines changed
Expand file tree Collapse file tree 1 file changed +6
-10
lines changed Original file line number Diff line number Diff line change 3232 downloadUrl="${baseUrl}Win64.zip?raw=true"
3333 echo "Download URL (64-bit): $downloadUrl"
3434 outputFile="$RUNNER_TEMP/downloaded64.zip"
35- curl -o "$outputFile" "$downloadUrl"
36- echo "Downloaded file: $outputFile"
37- ls $RUNNER_TEMP
38- unzip -o "$outputFile" -d ./tests
39- rm -f "$outputFile"
35+ curl "$downloadUrl"
36+ unzip -o ./Win64.zip -d ./tests
37+ rm -f ./Win64.zip
4038
4139 - name : Download Simba 2.0 (32-bit)
4240 shell : bash
4543 downloadUrl="${baseUrl}Win32.zip?raw=true"
4644 echo "Download URL (32-bit): $downloadUrl"
4745 outputFile="$RUNNER_TEMP/downloaded32.zip"
48- curl -o "$outputFile" "$downloadUrl"
49- echo "Downloaded file: $outputFile"
50- ls $RUNNER_TEMP
51- unzip -o "$outputFile" -d ./tests
52- rm -f "$outputFile"
46+ curl "$downloadUrl"
47+ unzip -o ./Win32.zip -d ./tests
48+ rm -f ./Win32.zip
5349
5450 - name : Run tests
5551 run : |
You can’t perform that action at this time.
0 commit comments