From bce6b7f2427b2fed509aa25f58bb84742a593368 Mon Sep 17 00:00:00 2001 From: Frederik Wulf Date: Mon, 10 Apr 2023 17:15:29 +0200 Subject: [PATCH] update publish-packages.yml --- .github/workflows/publish-packages.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-packages.yml b/.github/workflows/publish-packages.yml index 4574032..94d9c38 100644 --- a/.github/workflows/publish-packages.yml +++ b/.github/workflows/publish-packages.yml @@ -22,12 +22,11 @@ jobs: run: dotnet restore - name: Build package - run: dotnet pack -c Release + run: dotnet pack src/Ecommerce.Common -c Release - name: Publish package - uses: nuget/setup-nuget@v1 with: nuget-api-key: ${{ secrets.GITHUB_TOKEN }} nuget-version: '6.3.0.128' run: | - dotnet nuget push *.nupkg --skip-duplicate --api-key ${{ secrets.GITHUB_TOKEN }} --source https://nuget.pkg.github.com/fredyyy998/index.json \ No newline at end of file + dotnet nuget src/Ecommerce.Common push *.nupkg --skip-duplicate --api-key ${{ secrets.GITHUB_TOKEN }} --source https://nuget.pkg.github.com/fredyyy998/index.json \ No newline at end of file