From 20758dde3f22be571eb0df998a3424ad06a36699 Mon Sep 17 00:00:00 2001 From: Yura Isachenkov Date: Mon, 16 Mar 2026 21:27:48 -0300 Subject: [PATCH] Fixed bug --- .github/workflows/cd.yml | 4 ++-- .github/workflows/ci.yml | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 7d82b08..6f2ecfe 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - configuration: [R2020, R2021, R2022, R2023, R2024, R2025, R2026, R2027] + configuration: [R2020, R2021, R2022, R2023, R2024, R2025, R2026] steps: - name: Checkout @@ -34,4 +34,4 @@ jobs: - name: Push to NuGet shell: bash - run: dotnet nuget push "./nupkgs/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate + run: dotnet nuget push /nupkgs/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a11049f..10415e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,8 +1,6 @@ name: CI on: - push: - branches: [main] pull_request: branches: [main]