From 9c6603d97812f797c9ae034c931ab32e1cddad15 Mon Sep 17 00:00:00 2001 From: bounav Date: Tue, 31 Dec 2024 10:09:23 +0000 Subject: [PATCH] Tweaked release.yml --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 26d40e09..48737ba5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,17 +25,17 @@ jobs: - name: Build run: | cd src - dotnet build --no-restore spark-ci.slnf + dotnet build spark-ci.slnf --no-restore - name: Test run: | cd src - dotnet test --no-build --verbosity normal spark-ci.slnf + dotnet test spark-ci.slnf --verbosity normal --no-build - name: Pack run: | cd src - dotnet pack spark-pack.slnf + dotnet pack spark-pack.slnf --include-symbols --output nupkgs --no-build - name: Push to NuGet run: | - cd src - dotnet nuget push "*.nupkg" --api-key ${{secrets.nuget_api_key}} --source https://api.nuget.org/v3/index.json + cd src/nupkgs + dotnet nuget push "**/*.nupkg" -s --api-key ${{secrets.nuget_api_key}} --source https://api.nuget.org/v3/index.json -v \ No newline at end of file