2 parents 911727c + 06ddb4b commit 5b03eefCopy full SHA for 5b03eef
1 file changed
.github/workflows/nuget.yml
@@ -27,9 +27,10 @@ jobs:
27
run: dotnet build QuadrupleLib --no-restore --configuration Release
28
- name: Create NuGet packages
29
run: dotnet pack --no-build --output build/
30
- - name: Publish to NuGet
31
- run: dotnet nuget push --api-key ${{ secrets.API_KEY }} --source nuget.org build/**/*.nupkg
32
- name: Create new release
33
uses: ncipollo/release-action@v1
34
with:
+ artifacts: build/**/*.nupkg
35
generateReleaseNotes: true
+ - name: Publish to NuGet
36
+ run: dotnet nuget push --api-key ${{ secrets.API_KEY }} --source nuget.org build/**/*.nupkg --skip-duplicate
0 commit comments