Skip to content

Commit 47e3ae5

Browse files
committed
Include symbols into NuGet packages published to GitHub
1 parent 7cbc9fd commit 47e3ae5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/publish_ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,68 +54,68 @@ jobs:
5454
run: dotnet tool restore
5555

5656
- name: Run integration tests
57-
run: dotnet run --project build/Build.fsproj -- --embed-all --ci-build
57+
run: dotnet run --project build/Build.fsproj -- --ci-build
5858

5959
- name: Pack FSharp.Data.GraphQL.Shared project
6060
run: |
6161
cd src/FSharp.Data.GraphQL.Shared
62-
dotnet pack --no-build --configuration Release /p:IsNuGet=true /p:DebugType=Embedded -o ../../nuget
62+
dotnet pack --no-build --configuration Release /p:IsNuGet=true /p:IncludeSource=true -o ../../nuget
6363
- name: Publish FSharp.Data.GraphQL.Shared package to GitHub
6464
run: |
6565
dotnet nuget push nuget/FSharp.Data.GraphQL.Shared.${{env.VERSION}}.nupkg -s "github.com" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
6666
6767
- name: Pack FSharp.Data.GraphQL.Client project
6868
run: |
6969
cd src/FSharp.Data.GraphQL.Client
70-
dotnet pack --configuration Release /p:IsNuGet=true /p:DebugType=Embedded -o ../../nuget
70+
dotnet pack --configuration Release /p:IsNuGet=true /p:IncludeSource=true -o ../../nuget
7171
- name: Publish FSharp.Data.GraphQL.Client package to GitHub
7272
run: |
7373
dotnet nuget push nuget/FSharp.Data.GraphQL.Client.${{env.VERSION}}.nupkg -s "github.com" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
7474
7575
- name: Pack FSharp.Data.GraphQL.Server project
7676
run: |
7777
cd src/FSharp.Data.GraphQL.Server
78-
dotnet pack --no-build --configuration Release /p:IsNuGet=true /p:DebugType=Embedded -o ../../nuget
78+
dotnet pack --no-build --configuration Release /p:IsNuGet=true /p:IncludeSource=true -o ../../nuget
7979
- name: Publish FSharp.Data.GraphQL.Server package to GitHub
8080
run: |
8181
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.${{env.VERSION}}.nupkg -s "github.com" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
8282
8383
- name: Pack FSharp.Data.GraphQL.Server.AspNetCore project
8484
run: |
8585
cd src/FSharp.Data.GraphQL.Server.AspNetCore
86-
dotnet pack --no-build --configuration Release /p:IsNuGet=true /p:DebugType=Embedded -o ../../nuget
86+
dotnet pack --no-build --configuration Release /p:IsNuGet=true /p:IncludeSource=true -o ../../nuget
8787
- name: Publish FSharp.Data.GraphQL.Server.AspNetCore package to GitHub
8888
run: |
8989
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.AspNetCore.${{env.VERSION}}.nupkg -s "github.com" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
9090
9191
- name: Pack FSharp.Data.GraphQL.Server.Giraffe project
9292
run: |
9393
cd src/FSharp.Data.GraphQL.Server.Giraffe
94-
dotnet pack --no-build --configuration Release /p:IsNuGet=true /p:DebugType=Embedded -o ../../nuget
94+
dotnet pack --no-build --configuration Release /p:IsNuGet=true /p:IncludeSource=true -o ../../nuget
9595
- name: Publish FSharp.Data.GraphQL.Server.Giraffe package to GitHub
9696
run: |
9797
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.Giraffe.${{env.VERSION}}.nupkg -s "github.com" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
9898
9999
- name: Pack FSharp.Data.GraphQL.Server.Oxpecker project
100100
run: |
101101
cd src/FSharp.Data.GraphQL.Server.Oxpecker
102-
dotnet pack --no-build --configuration Release /p:IsNuGet=true /p:DebugType=Embedded -o ../../nuget
102+
dotnet pack --no-build --configuration Release /p:IsNuGet=true /p:IncludeSource=true -o ../../nuget
103103
- name: Publish FSharp.Data.GraphQL.Server.Oxpecker package to GitHub
104104
run: |
105105
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.Oxpecker.${{env.VERSION}}.nupkg -s "github.com" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
106106
107107
- name: Pack FSharp.Data.GraphQL.Server.Relay project
108108
run: |
109109
cd src/FSharp.Data.GraphQL.Server.Relay
110-
dotnet pack --no-build --configuration Release /p:IsNuGet=true /p:DebugType=Embedded -o ../../nuget
110+
dotnet pack --no-build --configuration Release /p:IsNuGet=true /p:IncludeSource=true -o ../../nuget
111111
- name: Publish FSharp.Data.GraphQL.Server.Relay package to GitHub
112112
run: |
113113
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.Relay.${{env.VERSION}}.nupkg -s "github.com" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
114114
115115
- name: Pack FSharp.Data.GraphQL.Server.Middleware project
116116
run: |
117117
cd src/FSharp.Data.GraphQL.Server.Middleware
118-
dotnet pack --no-build --configuration Release /p:IsNuGet=true /p:DebugType=Embedded -o ../../nuget
118+
dotnet pack --no-build --configuration Release /p:IsNuGet=true /p:IncludeSource=true -o ../../nuget
119119
- name: Publish FSharp.Data.GraphQL.Server.Middleware package to GitHub
120120
run: |
121121
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.Middleware.${{env.VERSION}}.nupkg -s "github.com" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate

0 commit comments

Comments
 (0)