We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57e386a commit 2b2efb2Copy full SHA for 2b2efb2
1 file changed
.github/workflows/dotnet-desktop.yml
@@ -29,16 +29,10 @@ jobs:
29
run: dotnet build --configuration Release --no-restore
30
31
- name: Publish project
32
- run: dotnet publish --configuration Release --output ./output --no-build
33
-
34
- - name: Archive build files
35
- if: success()
36
- run: |
37
- mkdir -p build/${{ matrix.os }}
38
- cp -r ./output/* build/${{ matrix.os }}/
+ run: dotnet publish --configuration Release --output ./output/${{ matrix.os }}
39
40
- name: Upload build artifacts
41
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4.6.2
42
with:
43
name: ${{ matrix.os }}-build
44
- path: build/${{ matrix.os }}
+ path: output/${{ matrix.os }}
0 commit comments