We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0a5de6 commit 8a33d82Copy full SHA for 8a33d82
.github/workflows/dotnetcore.yml
@@ -18,4 +18,9 @@ jobs:
18
- name: Build with dotnet
19
run: dotnet build -c Release
20
- name: Publish
21
- run: dotnet publish -c Release -r ${{ matrix.os }} --self-contained
+ run: dotnet publish -c Release -r ${{ matrix.os }} -o dist --self-contained
22
+ - name: Upload artifact
23
+ uses: actions/upload-artifact@v1.0.0
24
+ with:
25
+ name: ${{ matrix.os }}
26
+ path: dist
0 commit comments