We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49f7a41 commit aeab190Copy full SHA for aeab190
1 file changed
.github/workflows/build-and-sign.yml
@@ -0,0 +1,29 @@
1
+name: Build and Sign
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v3
15
16
+ - name: Setup .NET
17
+ uses: actions/setup-dotnet@v3
18
+ with:
19
+ dotnet-version: 6.x
20
21
+ - name: Build Package
22
+ run: dotnet pack --configuration Release src/AClassLibrary/AClassLibrary.csproj
23
24
+ - name: Upload build artifacts
25
+ uses: actions/upload-artifact@v3
26
27
+ name: BuildPackages
28
+ path: src/AClassLibrary/bin/Release/**/*.nupkg
29
0 commit comments