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 b4ce796 commit 357f789Copy full SHA for 357f789
.github/workflow/build.yml
@@ -35,4 +35,4 @@ jobs:
35
36
- name: dotnet test
37
run: dotnet test
38
- continue-on-error: true
+ allow-failure: true
.github/workflow/publish.yml
@@ -26,8 +26,9 @@ jobs:
26
# It'll take some time before we fully fix all the issues.
27
- name: Test
28
run: dotnet test --no-build --verbosity normal -p:Configuration=Release
29
30
31
- name: Publish to NuGet
32
+ if: ${{github.ref == 'refs/heads/main'}}
33
run: dotnet nuget push "/home/runner/work/net-ipfs-http-client/net-ipfs-http-client/src/bin/Release/IpfsShipyard.Ipfs.Http.Client.*.*.*.nupkg" --skip-duplicate --api-key ${{secrets.NUGET_KEY}} --source https://api.nuget.org/v3/index.json
34
0 commit comments