diff --git a/.circleci/config.yml b/.circleci/config.yml index 1918420..e2a52ed 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -33,17 +33,22 @@ jobs: # Pack - run: dotnet build --configuration Release ./src/GraphQL.Server.AspNetCore/GraphQL.Server.AspNetCore.csproj - run: dotnet pack --configuration Release ./src/GraphQL.Server.AspNetCore/GraphQL.Server.AspNetCore.csproj + - run: dotnet build --configuration Release ./src/GraphQL.Server.AspNetCore.GraphiQL/GraphQL.Server.AspNetCore.GraphiQL.csproj + - run: dotnet pack --configuration Release ./src/GraphQL.Server.AspNetCore.GraphiQL/GraphQL.Server.AspNetCore.GraphiQL.csproj # Store Artifacts - store_artifacts: path: ./src/GraphQL.Server.AspNetCore/bin/Release/GraphQL.Server.AspNetCore.1.0.0-alpha1.nupkg + - store_artifacts: + path: ./src/GraphQL.Server.AspNetCore.GraphiQL/bin/Release/GraphQL.Server.AspNetCore.GraphiQL.1.0.0-alpha1.nupkg # Deploy - deploy: name: MyGet command: | if [ "${CIRCLE_BRANCH}" == "master" ]; then - dotnet nuget push ./src/GraphQL.Server.AspNetCore/bin/Release/GraphQL.Server.AspNetCore.1.0.0-beta2.nupkg --api-key $MY_GET_API_KEY --source $MY_GET_SOURCE + #dotnet nuget push ./src/GraphQL.Server.AspNetCore/bin/Release/GraphQL.Server.AspNetCore.1.0.0-beta2.nupkg --api-key $MY_GET_API_KEY --source $MY_GET_SOURCE + #dotnet nuget push ./src/GraphQL.Server.AspNetCore.GraphiQL/bin/Release/GraphQL.Server.AspNetCore.GraphiQL.1.0.0-beta2.nupkg --api-key $MY_GET_API_KEY --source $MY_GET_SOURCE fi workflows: @@ -52,7 +57,7 @@ workflows: jobs: - netcore1.0 - netcore2.0 - #- deploy: - # requires: - # - netcore1.0 - # - netcore2.0 + - deploy: + requires: + - netcore1.0 + - netcore2.0