@@ -54,12 +54,12 @@ jobs:
5454 run : dotnet tool restore
5555
5656 - name : Run integration tests
57- run : dotnet run --project build/Build.fsproj
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:ContinuousIntegrationBuild=true -o ../../nuget
62+ dotnet pack --no-build --configuration Release /p:IsNuGet=true -o ../../nuget
6363 - name : Publish FSharp.Data.GraphQL.Shared package to NuGet
6464 run : |
6565 dotnet nuget push nuget/FSharp.Data.GraphQL.Shared.${{env.VERSION}}.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
7070 - name : Pack FSharp.Data.GraphQL.Client project
7171 run : |
7272 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
7474 - name : Publish FSharp.Data.GraphQL.Client package to NuGet
7575 run : |
7676 dotnet nuget push nuget/FSharp.Data.GraphQL.Client.${{env.VERSION}}.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
7979 - name : Pack FSharp.Data.GraphQL.Server project
8080 run : |
8181 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
8383 - name : Publish FSharp.Data.GraphQL.Server package to NuGet
8484 run : |
8585 dotnet nuget push nuget/FSharp.Data.GraphQL.Server.${{env.VERSION}}.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
8888 - name : Pack FSharp.Data.GraphQL.Server.AspNetCore project
8989 run : |
9090 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
9292 - name : Publish FSharp.Data.GraphQL.Server.AspNetCore package to NuGet
9393 run : |
9494 dotnet nuget push nuget/FSharp.Data.GraphQL.Server.AspNetCore.${{env.VERSION}}.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
9797 - name : Pack FSharp.Data.GraphQL.Server.Giraffe project
9898 run : |
9999 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
101101 - name : Publish FSharp.Data.GraphQL.Server.Giraffe package to NuGet
102102 run : |
103103 dotnet nuget push nuget/FSharp.Data.GraphQL.Server.Giraffe.${{env.VERSION}}.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
@@ -106,7 +106,7 @@ jobs:
106106 - name : Pack FSharp.Data.GraphQL.Server.Oxpecker project
107107 run : |
108108 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
110110 - name : Publish FSharp.Data.GraphQL.Server.Oxpecker package to NuGet
111111 run : |
112112 dotnet nuget push nuget/FSharp.Data.GraphQL.Server.Oxpecker.${{env.VERSION}}.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
@@ -115,7 +115,7 @@ jobs:
115115 - name : Pack FSharp.Data.GraphQL.Server.Relay project
116116 run : |
117117 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
119119 - name : Publish FSharp.Data.GraphQL.Server.Relay package to NuGet
120120 run : |
121121 dotnet nuget push nuget/FSharp.Data.GraphQL.Server.Relay.${{env.VERSION}}.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
@@ -124,7 +124,7 @@ jobs:
124124 - name : Pack FSharp.Data.GraphQL.Server.Middleware project
125125 run : |
126126 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
128128 - name : Publish FSharp.Data.GraphQL.Server.Middleware package to NuGet
129129 run : |
130130 dotnet nuget push nuget/FSharp.Data.GraphQL.Server.Middleware.${{env.VERSION}}.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
@@ -138,7 +138,7 @@ jobs:
138138 - name : Pack FSharp.Data.GraphQL.ProjectTemplates template project
139139 run : |
140140 cd samples
141- dotnet pack --configuration Release /p:ContinuousIntegrationBuild=true -o ../nuget
141+ dotnet pack --configuration Release -o ../nuget
142142 - name : Publish FSharp.Data.GraphQL.ProjectTemplates package to NuGet
143143 run : |
144144 $path = "nuget/FSharp.Data.GraphQL.ProjectTemplates.${{env.VERSION}}.nupkg"
0 commit comments