From 3589580dbc5f6466d5ebfc6aecfcbe0726bf7635 Mon Sep 17 00:00:00 2001 From: XeroxDev Date: Wed, 11 May 2022 17:58:55 +0200 Subject: [PATCH] ci(release.yml): fix missing key --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 67bfd31..3ee4c6b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,8 +31,8 @@ jobs: - name: Push shell: bash env: - NUGET_KEY: ${{ secrets.NUGET }} - run: nuget push ./*.nupkg -NonInteractive -src https://api.nuget.org/v3/index.json -ApiKey $NUGET_KEY + NUGET_KEY: ${{ secrets.NUGET_KEY }} + run: nuget push *.nupkg -NonInteractive -ApiKey $NUGET_KEY -src https://api.nuget.org/v3/index.json - name: Create release uses: softprops/action-gh-release@v1 with: