@@ -201,52 +201,6 @@ jobs:
201201
202202 Write-Output "Successfully copied nvapi64.dll and fakenvapi.ini to artifact directory"
203203 continue-on-error : false
204-
205- - name : Download latest Streamline SDK
206- if : steps.check_builds.outputs.has_new_build == 'true'
207- id : streamline_download
208- shell : powershell
209- run : |
210- # Get the latest release info from the API
211- $releases = Invoke-RestMethod -Uri "https://api.github.com/repos/NVIDIA-RTX/Streamline/releases/latest"
212-
213- # Find the streamline-sdk zip asset
214- $asset = $releases.assets | Where-Object {
215- $_.name -match "streamline-sdk.*\.zip" -or
216- $_.name -match "streamline-sdk-v\d+\.\d+\.\d+\.zip"
217- } | Select-Object -First 1
218-
219- if (-not $asset) {
220- Write-Error "Could not find streamline-sdk zip in the latest release"
221- exit 1
222- }
223-
224- Write-Output "Downloading $($asset.name)..."
225-
226- # Download the asset
227- $downloadUrl = $asset.browser_download_url
228- $zipPath = "${{ github.workspace }}\streamline-sdk.zip"
229- Invoke-WebRequest -Uri $downloadUrl -OutFile $zipPath
230-
231- # Extract the ZIP file
232- $extractPath = "${{ github.workspace }}\streamline-temp"
233- Expand-Archive -Path $zipPath -DestinationPath $extractPath -Force
234-
235- # Find the nvngx_dlss.dll file in the extracted directory (search all possible locations)
236- $nvngxDlssPath = Get-ChildItem -Path $extractPath -Recurse -Filter "nvngx_dlss.dll" | Select-Object -First 1 -ExpandProperty FullName
237-
238- if (-not $nvngxDlssPath) {
239- Write-Error "Could not find nvngx_dlss.dll in the extracted files"
240- exit 1
241- }
242-
243- Write-Output "Found nvngx_dlss.dll at: $nvngxDlssPath"
244-
245- # Copy the file to the artifact directory and rename it to nvngx.dll
246- Copy-Item -Path $nvngxDlssPath -Destination "${{ github.workspace }}\x64\Release\a\nvngx.dll"
247-
248- Write-Output "Successfully copied nvngx_dlss.dll to artifact directory as nvngx.dll"
249- continue-on-error : false
250204
251205 - name : List consolidated artifacts
252206 if : steps.check_builds.outputs.has_new_build == 'true'
@@ -285,18 +239,12 @@ jobs:
285239 $fakenvApiRelease = Invoke-RestMethod -Uri "https://api.github.com/repos/FakeMichau/fakenvapi/releases/latest"
286240 $fakenvApiVersion = $fakenvApiRelease.tag_name
287241
288- # Get Streamline SDK version
289- $streamlineRelease = Invoke-RestMethod -Uri "https://api.github.com/repos/NVIDIA-RTX/Streamline/releases/latest"
290- $streamlineVersion = $streamlineRelease.tag_name
291-
292242 echo "dlssg_version=$dlssgVersion" >> $env:GITHUB_OUTPUT
293243 echo "fakenvapi_version=$fakenvApiVersion" >> $env:GITHUB_OUTPUT
294- echo "streamline_version=$streamlineVersion" >> $env:GITHUB_OUTPUT
295244
296245 Write-Output "Component versions:"
297246 Write-Output " dlssg-to-fsr3: $dlssgVersion"
298- Write-Output " fakenvapi: $fakenvApiVersion"
299- Write-Output " Streamline SDK: $streamlineVersion"
247+ Write-Output " fakenvapi: $fakenvApiVersion"
300248 id : get_versions
301249
302250 - name : Create GitHub Release
@@ -317,7 +265,6 @@ jobs:
317265 - **OptiScaler**: Latest successful build from commit [`${{ steps.check_builds.outputs.head_sha }}`](https://github.com/optiscaler/OptiScaler/commit/${{ steps.check_builds.outputs.head_sha }})
318266 - **dlssg-to-fsr3**: ${{ steps.get_versions.outputs.dlssg_version }} - `dlssg_to_fsr3_amd_is_better.dll`
319267 - **fakenvapi**: ${{ steps.get_versions.outputs.fakenvapi_version }} - `nvapi64.dll` and `fakenvapi.ini`
320- - **Streamline SDK**: ${{ steps.get_versions.outputs.streamline_version }} - `nvngx.dll` (renamed from `nvngx_dlss.dll`)
321268
322269 ## ⚠️ Important Notes
323270
0 commit comments