From 2e4a8b6d980144c7910adb753d7a78f4ecfae475 Mon Sep 17 00:00:00 2001 From: Mathias Beaulieu-Duncan Date: Sun, 22 Dec 2024 12:03:21 -0500 Subject: [PATCH] fix pipeline for include symbols and source --- .gitea/workflows/publish-nugets.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/publish-nugets.yaml b/.gitea/workflows/publish-nugets.yaml index dcb4353..bec3ec0 100644 --- a/.gitea/workflows/publish-nugets.yaml +++ b/.gitea/workflows/publish-nugets.yaml @@ -33,8 +33,8 @@ jobs: - name: Build and Pack NuGet Package run: dotnet pack -c Release -o ./artifacts \ -p:Version=${{ env.RELEASE_VERSION }} \ - --include-symbols \ - --include-source + -p:IncludeSymbols=true \ + -p:IncludeSource=true - name: Validate NuGet Package run: dotnet nuget verify ./artifacts/*.nupkg