We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5150007 commit 8c22b16Copy full SHA for 8c22b16
1 file changed
.github/workflows/dotnet-desktop.yml
@@ -89,13 +89,15 @@ jobs:
89
run: mkdir dist
90
91
- name: Copy to dist directory
92
- run: Copy-item -Force -Recurse -Verbose GabNetStatsRepo\GabNetStats\bin\$env:Configuration\net10.0-windows10.0.26100.0\ -Destination dist
+ run: Copy-item -Force -Recurse -Verbose GabNetStatsRepo\GabNetStats\bin\$env:Configuration\net10.0-windows10.0.26100.0\* -Destination dist\
93
env:
94
Configuration: ${{ matrix.configuration }}
95
96
# Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact
97
- name: Upload build artifacts
98
uses: actions/upload-artifact@v6
99
with:
100
- name: GabNetStats
+ name: GabNetStats-$env:Configuration
101
path: dist
102
+ env:
103
+ Configuration: ${{ matrix.configuration }}
0 commit comments