From c8c7d0fb7ac7edc7e7cb5c5a340599fd7607c230 Mon Sep 17 00:00:00 2001 From: Wojt Janowski Date: Thu, 4 Apr 2024 22:57:37 +1100 Subject: [PATCH] Fix --- .github/workflows/release-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-package.yml b/.github/workflows/release-package.yml index 60e7ba2..5ac146e 100644 --- a/.github/workflows/release-package.yml +++ b/.github/workflows/release-package.yml @@ -38,7 +38,7 @@ jobs: shell: bash - name: Push - run: dotnet nuget push "./nupkg/*.nupkg" --api-key ${{ secrets.PUBLISH_TO_GITHUB }} --source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json --skip-duplicate + run: dotnet nuget push "./nupkg/*.nupkg" --api-key ${{ secrets.PUBLISH_TO_GITHUB }} --source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json --skip-duplicate --version ${{ env.PACKAGE_VERSION }} - name: PushToNuget - run: dotnet nuget push "./nupkg/*.nupkg" -k ${{ secrets.PUBLISH_TO_NUGET }} -s https://api.nuget.org/v3/index.json \ No newline at end of file + run: dotnet nuget push "./nupkg/*.nupkg" -k ${{ secrets.PUBLISH_TO_NUGET }} -s https://api.nuget.org/v3/index.json --version ${{ env.PACKAGE_VERSION }} \ No newline at end of file