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 b97bec6 commit 1aab1e6Copy full SHA for 1aab1e6
.github/workflows/continuous-integration.yml
@@ -26,12 +26,12 @@ jobs:
26
- run: dotnet restore --verbosity normal
27
- run: dotnet build --verbosity normal
28
- run: dotnet test --no-build --verbosity normal
29
- - run: dotnet pack --no-build --verbosity normal
+ - run: dotnet pack --output . --no-build --verbosity normal
30
id: dotnet-pack
31
- uses: actions/upload-artifact@v2
32
with:
33
name: nuget-package-${{ matrix.os }}
34
- path: "**/*.nupkg"
+ path: ${{ steps.dotnet-pack.outputs.nupkg-filename }}
35
publish-release:
36
runs-on: macos-latest
37
needs: package
0 commit comments