@@ -54,68 +54,68 @@ jobs:
54
54
run : dotnet tool restore
55
55
56
56
- name : Run integration tests
57
- run : dotnet run --project build/Build.fsproj -- --embed-all --ci-build
57
+ run : dotnet run --project build/Build.fsproj -- --embed-all
58
58
59
59
- name : Pack FSharp.Data.GraphQL.Shared project
60
60
run : |
61
61
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:DebugType=embedded -o ../../nuget
63
63
- name : Publish FSharp.Data.GraphQL.Shared package to GitHub
64
64
run : |
65
65
dotnet nuget push nuget/FSharp.Data.GraphQL.Shared.${{env.VERSION}}.nupkg -s "github.com" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
66
66
67
67
- name : Pack FSharp.Data.GraphQL.Client project
68
68
run : |
69
69
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:DebugType=embedded -o ../../nuget
71
71
- name : Publish FSharp.Data.GraphQL.Client package to GitHub
72
72
run : |
73
73
dotnet nuget push nuget/FSharp.Data.GraphQL.Client.${{env.VERSION}}.nupkg -s "github.com" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
74
74
75
75
- name : Pack FSharp.Data.GraphQL.Server project
76
76
run : |
77
77
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:DebugType=embedded -o ../../nuget
79
79
- name : Publish FSharp.Data.GraphQL.Server package to GitHub
80
80
run : |
81
81
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.${{env.VERSION}}.nupkg -s "github.com" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
82
82
83
83
- name : Pack FSharp.Data.GraphQL.Server.AspNetCore project
84
84
run : |
85
85
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:DebugType=embedded -o ../../nuget
87
87
- name : Publish FSharp.Data.GraphQL.Server.AspNetCore package to GitHub
88
88
run : |
89
89
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.AspNetCore.${{env.VERSION}}.nupkg -s "github.com" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
90
90
91
91
- name : Pack FSharp.Data.GraphQL.Server.Giraffe project
92
92
run : |
93
93
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:DebugType=embedded -o ../../nuget
95
95
- name : Publish FSharp.Data.GraphQL.Server.Giraffe package to GitHub
96
96
run : |
97
97
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.Giraffe.${{env.VERSION}}.nupkg -s "github.com" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
98
98
99
99
- name : Pack FSharp.Data.GraphQL.Server.Oxpecker project
100
100
run : |
101
101
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:DebugType=embedded -o ../../nuget
103
103
- name : Publish FSharp.Data.GraphQL.Server.Oxpecker package to GitHub
104
104
run : |
105
105
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.Oxpecker.${{env.VERSION}}.nupkg -s "github.com" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
106
106
107
107
- name : Pack FSharp.Data.GraphQL.Server.Relay project
108
108
run : |
109
109
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:DebugType=embedded -o ../../nuget
111
111
- name : Publish FSharp.Data.GraphQL.Server.Relay package to GitHub
112
112
run : |
113
113
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.Relay.${{env.VERSION}}.nupkg -s "github.com" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
114
114
115
115
- name : Pack FSharp.Data.GraphQL.Server.Middleware project
116
116
run : |
117
117
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:DebugType=embedded -o ../../nuget
119
119
- name : Publish FSharp.Data.GraphQL.Server.Middleware package to GitHub
120
120
run : |
121
121
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.Middleware.${{env.VERSION}}.nupkg -s "github.com" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
0 commit comments