We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f93e5de commit 733109aCopy full SHA for 733109a
.circleci/config.yml
@@ -27,7 +27,13 @@ jobs:
27
# needed for release process
28
- run: brew install gettext
29
- run: cd packages/graphql-playground-electron && yarn
30
- - run: cd packages/graphql-playground-electron && yarn release
+ - run: |
31
+ if [[ -z "$CIRCLE_PULL_REQUEST" && "$CIRCLE_BRANCH" == "master" ]]
32
+ then
33
+ cd packages/graphql-playground-electron && yarn release
34
+ else
35
+ cd packages/graphql-playground-electron && yarn build
36
+ fi
37
38
workflows:
39
version: 2
0 commit comments