We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a64dabb commit 9cbb29eCopy full SHA for 9cbb29e
.github/workflows/main.yml
@@ -0,0 +1,16 @@
1
+name: Publish to NuGet
2
+on:
3
+ push:
4
+ tags:
5
+ - 'v*.*.*'
6
+
7
+jobs:
8
+ publish:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - uses: actions/setup-dotnet@v4
13
+ with:
14
+ dotnet-version: 8.0.x
15
+ - run: dotnet pack -c Release
16
+ - run: dotnet nuget push **/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
0 commit comments