Skip to content

Commit 3ace677

Browse files
committed
Reduce nesting
1 parent 046ebcf commit 3ace677

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/workflow.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)