File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -69,16 +69,21 @@ jobs:
6969 run : |
7070 ${{ github.workspace }}/dependencies/Build-FFX-SDK.bat
7171
72- # All variants get built here since I don't want to burn my action minutes on the Vulkan and FFX SDKs
72+ # Only no loader version is built
7373 - name : Build dlssg-to-fsr3
7474 shell : pwsh
7575 run : |
7676 ${{ github.workspace }}/Make-Release.ps1
77+
78+ - name : Extract the zip file
79+ shell : pwsh
80+ run : |
81+ $zipPath = Get-ChildItem "${{ github.workspace }}\bin\built-packages\" -Filter *.zip | Select-Object -First 1
82+ Expand-Archive -Path $zipPath.FullName -DestinationPath extracted-build
7783
7884 - name : Upload artifacts
7985 uses : actions/upload-artifact@v4
8086 with :
81- name : ' dlssg-to-fsr3-ci-test'
82- path : |
83- ${{ github.workspace }}/bin/built-packages/*.zip
87+ name : dlssg-to-fsr3-${{ github.ref_name }}
88+ path : extracted-build/
8489 if-no-files-found : error
You can’t perform that action at this time.
0 commit comments