File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 1- name : Update Items
1+ name : Update Files
22
33on :
44 push :
1212 - name : Fetch Simba 2 download URL
1313 shell : powershell
1414 run : |
15- $url = "https://raw.githubusercontent.com/Villavu/Simba-Build-Archive/refs/heads/main/latest.win64"
16- $rawUrl = Invoke-WebRequest -Uri $url -UseBasicParsing | Select-Object -ExpandProperty Content
17- $downloadUrl = $rawUrl.Trim()
15+ $url = "https://raw.githubusercontent.com/Villavu/Simba-Build-Archive/main/latest.win64"
16+ $downloadUrl = (Invoke-WebRequest -Uri $url -UseBasicParsing).Content.Trim()
1817 echo "downloadUrl=$downloadUrl" >> $env:GITHUB_OUTPUT
1918 New-Item -Path ".\Includes" -ItemType Directory -Force
2019
2625 Invoke-WebRequest -Uri $downloadUrl -OutFile "download.zip"
2726 Expand-Archive -Path "download.zip" -DestinationPath . -Force
2827 Remove-Item "download.zip" -Force
29-
28+
3029 - name : Checkout repository
3130 uses : actions/checkout@v4.2.2
3231 with :
You can’t perform that action at this time.
0 commit comments