From eb8831aeae5f6c86707586fe1a594c9edd4130c6 Mon Sep 17 00:00:00 2001 From: ProbablePrime Date: Fri, 3 Nov 2023 23:18:14 -0700 Subject: [PATCH] fix(ci): directly link to csproj file --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 061c230..52400af 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,6 +18,6 @@ jobs: - name: Build run: dotnet build --configuration Release --no-restore -p:Version=${{ env.VERSION }} - name: Pack - run: dotnet pack Compressonator.NET --output nupkgs --configuration Release -p:Version=${{ env.VERSION }} + run: dotnet pack .\Compressonator.NET.csproj --output nupkgs --configuration Release -p:Version=${{ env.VERSION }} - name: Nuget Publish - run: dotnet nuget push nupkgs\*.nupkg -k ${{ secrets.NUGET_TOKEN }} -s https://api.nuget.org/v3/index.json \ No newline at end of file + run: dotnet nuget push nupkgs\*.nupkg -k ${{ secrets.NUGET_TOKEN }} -s https://api.nuget.org/v3/index.json