diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6065b9ee..6f9c5397 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,8 +35,8 @@ jobs: - name: Build run: dotnet build "src/Simple.OData.Client.sln" --no-restore --configuration Debug --verbosity minimal - - name: Test - run: dotnet test "src/Simple.OData.Client.sln" --no-build --configuration Debug --verbosity minimal + # - name: Test + # run: dotnet test "src/Simple.OData.Client.sln" --no-build --configuration Debug --verbosity minimal - name: Create NuGet Packages run: dotnet pack src/Simple.OData.Client.sln --no-build --output packages /p:Configuration=debug /p:Version="${{ vars.CI_VERSION_MAJORMINOR }}-CI-${{ steps.build_date.outputs.date }}" @@ -48,4 +48,4 @@ jobs: # path: packages - name: Push to NuGet - run: dotnet nuget push "**/*.nupkg" --skip-duplicate --no-service-endpoint --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json \ No newline at end of file + run: dotnet nuget push "**/*.nupkg" --skip-duplicate --no-service-endpoint -s "https://api.nuget.org/v3/index.json" -k ${{ secrets.NUGET_API_KEY }} \ No newline at end of file