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 c014d85 commit 0feb297Copy full SHA for 0feb297
.github/workflows/publish.yml
@@ -16,9 +16,11 @@ jobs:
16
- name: build
17
run: dotnet build --configuration Release
18
- name: pack
19
- run: dotnet pack --no-build \
20
- --configuration Release mongo-declarative-indexes/mongo-declarative-indexes.csproj \
21
- -p:PackageVersion=${{ github.event.release.tag_name }} \
22
- --output .
+ run: >-
+ dotnet pack --no-build
+ --configuration Release mongo-declarative-indexes/mongo-declarative-indexes.csproj
+ -p:PackageVersion=${{ github.event.release.tag_name }}
23
+# --output .
24
+
25
-name: push
26
run: dotnet nuget push *.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_API_KEY}}
0 commit comments