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