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 5a1c9db commit d9d4b9dCopy full SHA for d9d4b9d
.github/workflows/continuous-integration.yml
@@ -30,8 +30,9 @@ jobs:
30
- run: dotnet pack --output . --no-build --verbosity normal
31
id: dotnet-pack
32
- uses: actions/upload-artifact@v2
33
+ if: matrix.os == 'macos-latest'
34
with:
- name: nuget-package-${{ matrix.os }}
35
+ name: nuget-package
36
path: ${{ steps.dotnet-pack.outputs.nupkg-filename }}
37
publish:
38
runs-on: macos-latest
@@ -47,5 +48,5 @@ jobs:
47
48
tag: ${{ needs.package.outputs.version }}
49
- uses: actions/download-artifact@v2
50
- name: nuget-package-macos-latest
51
52
- run: dotnet nuget push ${{ needs.package.outputs.nupkg-filename }} --source https://api.nuget.org/v3/index.json --api-key "${{ secrets.NUGET_API_KEY }}"
0 commit comments