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 2e52611 commit 8ee0bedCopy full SHA for 8ee0bed
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,21 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ tags: [ '*' ]
6
7
+jobs:
8
9
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - name: Setup .NET
15
+ uses: actions/setup-dotnet@v3
16
+ with:
17
+ dotnet-version: 6.0.x
18
+ - name: Pack
19
+ run: nuget pack -OutputDirectory ./dist -Version ${{ github.ref_name }}
20
+ - name: Push
21
+ run: nuget push dist/*.nupkg ${{ secrets.NUGET_API_KEY }} -Source https://api.nuget.org/v3/index.json
0 commit comments