From 64dde4cb22590e8823beaa0572f0bffc201bd145 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9rald=20Barr=C3=A9?= Date: Thu, 27 Jul 2023 17:55:28 -0400 Subject: [PATCH] Push temporary packages to feedz.io --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 399e0df65..ca767bee4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -145,13 +145,14 @@ jobs: } else { - Write-Host "Not on the default branch => Do not push" + & dotnet nuget push "$($file.FullName)" --api-key "$env:FeedzApiKey" --source https://f.feedz.io/meziantou/meziantou-analyzer/nuget/index.json --force-english-output --skip-duplicate } } name: Publish NuGet packages if: always() env: - NuGetApiKey: ${{ secrets.NuGetApiKey }} + NuGetApiKey: ${{ secrets.NUGETAPIKEY }} + FeedzApiKey: ${{ secrets.FEEDZ_APIKEY }} create_release: runs-on: 'ubuntu-latest'