diff --git a/.github/workflows/test-and-deploy-on-new-release.yml b/.github/workflows/test-and-deploy-on-new-release.yml index 2ceb891..738d919 100644 --- a/.github/workflows/test-and-deploy-on-new-release.yml +++ b/.github/workflows/test-and-deploy-on-new-release.yml @@ -21,11 +21,7 @@ jobs: - name: Pack run: dotnet pack --no-build --configuration Release /p:ContinuousIntegrationBuild=true - name: Deploy to GitHub - run: | - dotnet nuget push **/*.nupkg --api-key ${{ secrets.PUBLISH_PACKAGES_GITHUB }} \ - --source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json + run: dotnet nuget push **/*.nupkg --api-key ${{ secrets.PUBLISH_PACKAGES_GITHUB }} --source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json - name: Deploy to NuGet - run: | - dotnet nuget push **/*.nupkg --api-key ${{ secrets.PUBLISH_PACKAGES_NUGET }} \ - --source https://api.nuget.org/v3/index.json + run: dotnet nuget push **/*.nupkg --api-key ${{ secrets.PUBLISH_PACKAGES_NUGET }} --source https://api.nuget.org/v3/index.json \ No newline at end of file