From b014a763a594487c69b2e64054c6bfca343f4647 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Denuzi=C3=A8re?= Date: Wed, 16 Oct 2024 22:57:41 +0200 Subject: [PATCH] Bump actions/upload-artifact from 1 to 4.4.0 in /.github/workflows --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e509c0..71bc03e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,7 @@ jobs: ./build.sh -t pack -c release - name: Upload nupkg - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4.4.0 with: name: nuget path: build @@ -57,7 +57,7 @@ jobs: name: nuget - name: Push to GitHub feed - run: dotnet nuget push nuget/*.nupkg + run: dotnet nuget push *.nupkg --api-key "${{secrets.GITHUB_TOKEN}}" --source "https://nuget.pkg.github.com/${{github.repository_owner}}/" --skip-duplicate