From a9fa6c39f8887c39e053cae2e27b85921b8b7a3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20B=C3=BCrgi?= Date: Mon, 7 Oct 2024 20:39:48 +0200 Subject: [PATCH] Another try --- .github/workflows/release-packages.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-packages.yml b/.github/workflows/release-packages.yml index d736bb563..84717a4d8 100644 --- a/.github/workflows/release-packages.yml +++ b/.github/workflows/release-packages.yml @@ -26,6 +26,7 @@ jobs: - name: Build run: dotnet build --configuration Release --no-restore -p:CIRun=true - name: Create the package - run: dotnet pack --output nupkgs --configuration Release + run: dotnet pack --output nupkg --configuration Release - name: Publish the packages to GPR - run: dotnet nuget add source --username rbuergi --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/Systemorph/index.json" + run: dotnet nuget add source --username Systemorph --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/Systemorph/index.json" + run: dotnet nuget push ./nupkg/*.nupkg --source "github" --api-key ${{ secrets.GITHUB_TOKEN }}