@@ -54,12 +54,12 @@ jobs:
54
54
run : dotnet tool restore
55
55
56
56
- name : Run integration tests
57
- run : dotnet run --project build/Build.fsproj
57
+ run : dotnet run --project build/Build.fsproj -- --ci-build
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:ContinuousIntegrationBuild=true -o ../../nuget
62
+ dotnet pack --no-build --configuration Release /p:IsNuGet=true -o ../../nuget
63
63
- name : Publish FSharp.Data.GraphQL.Shared package to NuGet
64
64
run : |
65
65
dotnet nuget push nuget/FSharp.Data.GraphQL.Shared.${{env.VERSION}}.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
70
70
- name : Pack FSharp.Data.GraphQL.Client project
71
71
run : |
72
72
cd src/FSharp.Data.GraphQL.Client
73
- dotnet pack --configuration Release /p:IsNuGet=true /p:ContinuousIntegrationBuild=true -o ../../nuget
73
+ dotnet pack --configuration Release /p:IsNuGet=true -o ../../nuget
74
74
- name : Publish FSharp.Data.GraphQL.Client package to NuGet
75
75
run : |
76
76
dotnet nuget push nuget/FSharp.Data.GraphQL.Client.${{env.VERSION}}.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
79
79
- name : Pack FSharp.Data.GraphQL.Server project
80
80
run : |
81
81
cd src/FSharp.Data.GraphQL.Server
82
- dotnet pack --no-build --configuration Release /p:IsNuGet=true /p:ContinuousIntegrationBuild=true -o ../../nuget
82
+ dotnet pack --no-build --configuration Release /p:IsNuGet=true -o ../../nuget
83
83
- name : Publish FSharp.Data.GraphQL.Server package to NuGet
84
84
run : |
85
85
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.${{env.VERSION}}.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
88
88
- name : Pack FSharp.Data.GraphQL.Server.AspNetCore project
89
89
run : |
90
90
cd src/FSharp.Data.GraphQL.Server.AspNetCore
91
- dotnet pack --no-build --configuration Release /p:IsNuget=true /p:ContinuousIntegrationBuild=true -o ../../nuget
91
+ dotnet pack --no-build --configuration Release /p:IsNuget=true -o ../../nuget
92
92
- name : Publish FSharp.Data.GraphQL.Server.AspNetCore package to NuGet
93
93
run : |
94
94
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.AspNetCore.${{env.VERSION}}.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
97
97
- name : Pack FSharp.Data.GraphQL.Server.Giraffe project
98
98
run : |
99
99
cd src/FSharp.Data.GraphQL.Server.Giraffe
100
- dotnet pack --no-build --configuration Release /p:IsNuget=true /p:ContinuousIntegrationBuild=true -o ../../nuget
100
+ dotnet pack --no-build --configuration Release /p:IsNuget=true -o ../../nuget
101
101
- name : Publish FSharp.Data.GraphQL.Server.Giraffe package to NuGet
102
102
run : |
103
103
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.Giraffe.${{env.VERSION}}.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
@@ -106,7 +106,7 @@ jobs:
106
106
- name : Pack FSharp.Data.GraphQL.Server.Oxpecker project
107
107
run : |
108
108
cd src/FSharp.Data.GraphQL.Server.Oxpecker
109
- dotnet pack --no-build --configuration Release /p:IsNuget=true /p:ContinuousIntegrationBuild=true -o ../../nuget
109
+ dotnet pack --no-build --configuration Release /p:IsNuget=true -o ../../nuget
110
110
- name : Publish FSharp.Data.GraphQL.Server.Oxpecker package to NuGet
111
111
run : |
112
112
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.Oxpecker.${{env.VERSION}}.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
@@ -115,7 +115,7 @@ jobs:
115
115
- name : Pack FSharp.Data.GraphQL.Server.Relay project
116
116
run : |
117
117
cd src/FSharp.Data.GraphQL.Server.Relay
118
- dotnet pack --no-build --configuration Release /p:IsNuGet=true /p:ContinuousIntegrationBuild=true -o ../../nuget
118
+ dotnet pack --no-build --configuration Release /p:IsNuGet=true -o ../../nuget
119
119
- name : Publish FSharp.Data.GraphQL.Server.Relay package to NuGet
120
120
run : |
121
121
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.Relay.${{env.VERSION}}.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
@@ -124,7 +124,7 @@ jobs:
124
124
- name : Pack FSharp.Data.GraphQL.Server.Middleware project
125
125
run : |
126
126
cd src/FSharp.Data.GraphQL.Server.Middleware
127
- dotnet pack --no-build --configuration Release /p:IsNuGet=true /p:ContinuousIntegrationBuild=true -o ../../nuget
127
+ dotnet pack --no-build --configuration Release /p:IsNuGet=true -o ../../nuget
128
128
- name : Publish FSharp.Data.GraphQL.Server.Middleware package to NuGet
129
129
run : |
130
130
dotnet nuget push nuget/FSharp.Data.GraphQL.Server.Middleware.${{env.VERSION}}.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
@@ -138,7 +138,7 @@ jobs:
138
138
- name : Pack FSharp.Data.GraphQL.ProjectTemplates template project
139
139
run : |
140
140
cd samples
141
- dotnet pack --configuration Release /p:ContinuousIntegrationBuild=true -o ../nuget
141
+ dotnet pack --configuration Release -o ../nuget
142
142
- name : Publish FSharp.Data.GraphQL.ProjectTemplates package to NuGet
143
143
run : |
144
144
$path = "nuget/FSharp.Data.GraphQL.ProjectTemplates.${{env.VERSION}}.nupkg"
0 commit comments