From f4f9a5c88dc5b44c131892d2fee1660abc82c953 Mon Sep 17 00:00:00 2001 From: Alexander Shabarshov Date: Sun, 27 Apr 2025 11:17:07 +0100 Subject: [PATCH] Remove --include-symbols from dotnet pack command --- .github/workflows/nuget.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nuget.yml b/.github/workflows/nuget.yml index 494c264..906ee7b 100644 --- a/.github/workflows/nuget.yml +++ b/.github/workflows/nuget.yml @@ -34,7 +34,7 @@ jobs: uses: battila7/get-version-action@v2 - name: 'Pack project' - run: dotnet pack ${{ env.PROJECT_PATH }} --no-restore --no-build --configuration Release --include-symbols -p:PackageVersion=${{ steps.version.outputs.version-without-v }} --output ${{ env.PACKAGE_OUTPUT_DIRECTORY }} + run: dotnet pack ${{ env.PROJECT_PATH }} --no-restore --no-build --configuration Release -p:PackageVersion=${{ steps.version.outputs.version-without-v }} --output ${{ env.PACKAGE_OUTPUT_DIRECTORY }} - name: 'Push package' run: dotnet nuget push ${{ env.PACKAGE_OUTPUT_DIRECTORY }}/*.nupkg -k ${{ secrets.NUGET_AUTH_TOKEN }} -s ${{ env.NUGET_SOURCE_URL }} \ No newline at end of file