Skip to content

Commit ef4002b

Browse files
committed
Fixed the stream
1 parent 1e9fcc5 commit ef4002b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/update-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
id: version-select
5151
run: |
5252
$ProgressPreference = 'SilentlyContinue'
53-
$json = Invoke-WebRequest -UseBasicParsing 'https://services.api.unity.com/unity/editor/release/v1/releases?stream=LTS&limit=1&offset=0&platform=WINDOWS&version=${{ matrix.unity-prefix }}'
53+
$json = Invoke-WebRequest -UseBasicParsing 'https://services.api.unity.com/unity/editor/release/v1/releases?limit=1&offset=0&platform=WINDOWS&version=${{ matrix.unity-prefix }}'
5454
$latest = ($json.Content | ConvertFrom-Json).results[0]
5555
echo "Latest version: $latest"
5656
"version=$($latest.version)" >> $env:GITHUB_OUTPUT

scripts/ci-env.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ switch ($name) {
1717
return "6000.0.54f1"
1818
}
1919
"unity6000.1" {
20-
return ""
20+
return "6000.1.15f1"
2121
}
2222
Default {
2323
throw "Unkown variable '$name'"

0 commit comments

Comments
 (0)