From d1ffff66a4c7987e4006051c9f42e7a95363022d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20B=C3=BCrgi?= Date: Mon, 7 Oct 2024 19:42:05 +0200 Subject: [PATCH] Update release-packages.yml --- .github/workflows/release-packages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-packages.yml b/.github/workflows/release-packages.yml index 4330c4ed3..aff9b3ea7 100644 --- a/.github/workflows/release-packages.yml +++ b/.github/workflows/release-packages.yml @@ -18,7 +18,7 @@ jobs: dotnet-version: 8.0.x source-url: https://nuget.pkg.github.com/Systemorph/index.json env: - NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} + NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Restore workloads run: dotnet workload restore - name: Restore dependencies @@ -27,5 +27,5 @@ jobs: run: dotnet build --configuration Release --no-restore -p:CIRun=true - name: Create the package run: dotnet pack --output nupkgs --configuration Release -# - name: Publish the package to GPR -# run: dotnet nuget push /bin/Release/*.nupkg + - name: Publish the packages to GPR + run: dotnet nuget push nupkgs/*.nupkg -k ${{ secrets.GITHUB_TOKEN }} -s https://nuget.pkg.github.com/Systemorph/index.json