From 32eceb499f4406b2dc7a3936bdf3ac3a36cf2146 Mon Sep 17 00:00:00 2001 From: Rick van Dam Date: Sun, 24 Sep 2023 12:30:14 +0200 Subject: [PATCH] remove --no-symbols so that symbol packages are pushed (#933) --- .github/workflows/push_nuget_manual.yml | 2 +- .github/workflows/tags_nuget.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push_nuget_manual.yml b/.github/workflows/push_nuget_manual.yml index 74f6941a1..38cbc2018 100644 --- a/.github/workflows/push_nuget_manual.yml +++ b/.github/workflows/push_nuget_manual.yml @@ -55,4 +55,4 @@ jobs: - name: 🎁 Pack Mqtt extensions run: dotnet pack src/Extensions/NetDaemon.Extensions.MqttEntityManager/NetDaemon.Extensions.MqttEntityManager.csproj --configuration Release -p:PackageVersion=${{ github.event.inputs.tag }} -p:Version=${{ github.event.inputs.tag }} - name: 📨 Push to nuget - run: dotnet nuget push **/*.nupkg --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json --no-symbols + run: dotnet nuget push **/*.nupkg --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json diff --git a/.github/workflows/tags_nuget.yml b/.github/workflows/tags_nuget.yml index 66d9ae106..0df04edd1 100644 --- a/.github/workflows/tags_nuget.yml +++ b/.github/workflows/tags_nuget.yml @@ -52,4 +52,4 @@ jobs: - name: 🎁 Pack Mqtt extensions run: dotnet pack src/Extensions/NetDaemon.Extensions.MqttEntityManager/NetDaemon.Extensions.MqttEntityManager.csproj --configuration Release -p:PackageVersion=${{ steps.version.outputs.version }} -p:Version=${{ steps.version.outputs.version }} - name: 📨 Push to nuget - run: dotnet nuget push **/*.nupkg --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json --no-symbols + run: dotnet nuget push **/*.nupkg --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json