From bfcce75dc1bfd3934b00a5bb2b4814c75734c151 Mon Sep 17 00:00:00 2001 From: Oleksandr Hulyi Date: Wed, 25 Sep 2024 22:46:02 +1200 Subject: [PATCH] Update application.yml --- .github/workflows/application.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/application.yml b/.github/workflows/application.yml index 5d861e3..dbc5ca1 100644 --- a/.github/workflows/application.yml +++ b/.github/workflows/application.yml @@ -38,15 +38,14 @@ jobs: - name: Test net8 run: dotnet test -c $app_conf --no-build -f net8.0 - name: Pack - working-directory: nuget run: dotnet pack -c $app_conf --no-build -o `pwd`/artifacts -p:Version=$app_version -p:CommitSHA=$GITHUB_SHA - uses: actions/upload-artifact@v3.2.1 with: name: artifacts - path: ./nuget/artifacts + path: ./artifacts - name: Publish if: env.app_release == 'true' env: NUGETKEY: ${{ secrets.NUGET_KEY }} - working-directory: nuget/artifacts + working-directory: artifacts run: dotnet nuget push ./*.nupkg -s $nuget_url -k $NUGETKEY