We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df50252 commit d1417d8Copy full SHA for d1417d8
.github/workflows/ci.yml
@@ -49,7 +49,7 @@ jobs:
49
until dotnet nuget push 'build/output/*.nupkg' -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate --no-symbols true; do echo "Retrying"; sleep 1; done;
50
51
# Github packages requires authentication, this is likely going away in the future so for now we publish to feedz.io
52
- - run: dotnet nuget push 'build/output/*.nupkg' -k ${{secrets.FEEDZ_IO_API_KEY}} -s https://f.feedz.io/elastic/all/nuget/index.json --skip-duplicate --no-symbols true
+ - run: dotnet nuget push 'build/output/*.nupkg' -k ${{secrets.FEEDZ_IO_API_KEY}} -s https://f.feedz.io/elastic/all/nuget/index.json --skip-duplicate --no-symbols
53
name: publish canary packages to feedz.io
54
if: github.event_name == 'push' && startswith(github.ref, 'refs/heads')
55
0 commit comments