From 3e2a7c966109c5d3c7f0acb0ceb1be4747e359b5 Mon Sep 17 00:00:00 2001 From: Eli Byrd Date: Tue, 7 Jan 2025 22:12:04 -0600 Subject: [PATCH] Fix Conflicting Path and Add Symbols --- .github/workflows/publish.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d995cfb..c875273 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -37,18 +37,16 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - ls ./output/RoveComm.**.nupkg - dotnet nuget push "./output/RoveComm.**.nupkg" \ + dotnet nuget push "./RoveComm.**.nupkg" \ --source "https://nuget.pkg.github.com/MissouriMRDT/index.json" \ - --api-key $GITHUB_TOKEN \ - --no-symbols + --api-key $GITHUB_TOKEN working-directory: ./output - name: Publish to NuGet.org env: NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} run: | - dotnet nuget push "./output/*.nupkg" \ + dotnet nuget push "./RoveComm.**.nupkg" \ --source "https://api.nuget.org/v3/index.json" \ --api-key $NUGET_API_KEY working-directory: ./output