We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77f34c3 commit 4b8a02cCopy full SHA for 4b8a02c
.github/workflows/ci.yml
@@ -2,11 +2,15 @@ name: CI
2
3
on:
4
push:
5
+ branches:
6
+ - preview
7
paths:
8
- '.github/workflows/ci.yml'
9
- 'src/**/**'
10
- 'build.cake'
11
pull_request:
12
13
14
15
16
@@ -45,9 +49,8 @@ jobs:
45
49
./build/*.zip
46
50
./build/*.tar.gz
47
51
./build/*.nupkg
48
- ./build/*.snupkg
52
- - name: Push NuGet package
- if: github.ref_type == 'tag'
53
+ - name: Publish to NuGet
54
run: |
- dotnet nuget push ./build/*.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET }}
55
+ dotnet nuget push ./build/*.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGETKEY }}
56
+
0 commit comments