We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3de19d3 commit 5d8ca88Copy full SHA for 5d8ca88
.github/workflows/ci.yml
@@ -1,4 +1,4 @@
1
-name: Build and Test
+name: Build, Test and Pack
2
3
on:
4
push:
@@ -49,3 +49,12 @@ jobs:
49
50
- name: Test
51
run: dotnet test --filter '(Execution!=Manual)' --no-build --configuration ${{ matrix.configuration }}
52
+
53
+ - name: Pack
54
+ run: dotnet pack --configuration ${{ matrix.configuration }}
55
56
+ - name: Upload artifacts
57
+ uses: actions/upload-artifact@v4
58
+ with:
59
+ name: packages-${{ matrix.configuration }}-${{ runner.os }}
60
+ path: artifacts/
0 commit comments