diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 84a6514..7448fbb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,7 +38,7 @@ jobs: name: Nuget-packages-${{ steps.gitversion.outputs.nuGetVersionV2 }} path: nuget-packages - name: Configure Github Nuget Feed - run: dotnet nuget add source --name github https://nuget.pkg.github.com/aviationexam/index.json + run: dotnet nuget add source --name github --username USERNAME --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text https://nuget.pkg.github.com/aviationexam/index.json - name: Push package to Github Packages run: dotnet nuget push 'nuget-packages/*.nupkg' --api-key ${{ secrets.GITHUB_TOKEN }} --source github - name: Push package to Nuget