From 73ed7a402b40a33fa0c3c3bc607de0e61913c59a Mon Sep 17 00:00:00 2001 From: ArchLeaders Date: Tue, 5 Dec 2023 01:38:26 -0800 Subject: [PATCH] Third times the charm --- .github/workflows/nuget.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nuget.yaml b/.github/workflows/nuget.yaml index ad19e76..1a1a4ef 100644 --- a/.github/workflows/nuget.yaml +++ b/.github/workflows/nuget.yaml @@ -51,7 +51,7 @@ jobs: dotnet pack src/${{ env.project_name }}/${{ env.project_name }}.csproj \ --no-restore \ -c Release \ - -o /output/ \ + -o ./build-output/ \ -p:Authors="${{ env.authors }}" \ -p:Description="${{ env.description }}" \ -p:PackageLicenseExpression="${{ env.spdx }}" \ @@ -64,6 +64,6 @@ jobs: - name: Push shell: bash run: |- - dotnet nuget push /output/*.nupkg \ + dotnet nuget push ./build-output/*.nupkg \ -k ${{ secrets.NUGET_AUTH }} \ -s ${{ env.nuget }} \ \ No newline at end of file