File tree Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+
1
3
jobs :
2
4
3
5
playground-build :
@@ -14,11 +16,22 @@ jobs:
14
16
xcode : " 9.0"
15
17
steps :
16
18
- checkout
19
+ - run : |
20
+ security create-keychain -p travis build.keychain
21
+ security default-keychain -s build.keychain
22
+ security unlock-keychain -p travis build.keychain
23
+ echo $CERTIFICATE_OSX_P12 | base64 --decode > certificate.p12
24
+ security import certificate.p12 -k build.keychain -P $CERTIFICATE_OSX_PASSWORD -T /usr/bin/codesign
25
+ security set-key-partition-list -S apple-tool:,apple: -s -k travis build.keychain
26
+ # - run: security create-keychain -p travis build.keychain
27
+ # - run: security default-keychain -s build.keychain
28
+ # - run: security unlock-keychain -p travis build.keychain
29
+ # - run: echo $CERTIFICATE_OSX_P12 | base64 --decode > certificate.p12
30
+ # - run: security import certificate.p12 -k build.keychain -P $CERTIFICATE_OSX_PASSWORD -T /usr/bin/codesign
31
+ # - run: security set-key-partition-list -S apple-tool:,apple: -s -k travis build.keychain
17
32
- run : npm i -g yarn
18
- - run : echo $CERTIFICATE_OSX_P12 | base64 --decode > certificate.p12
19
- - run : security import certificate.p12 -P $CERTIFICATE_OSX_PASSWORD -T /usr/bin/codesign
20
33
- run : cd packages/graphql-playground-electron && yarn
21
- # - run: cd packages/graphql-playground-electron && yarn release
34
+ - run : cd packages/graphql-playground-electron && yarn release
22
35
23
36
workflows :
24
37
version : 2
Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ functions:
159
159
cors : true
160
160
` ` `
161
161
162
- ## Development [](https://badge.fury.io/js/graphql-playground)
162
+ ## Development [](https://badge.fury.io/js/graphql-playground) [](https://travis-ci.org/graphcool/graphql-playground)
163
163
164
164
This is a mono-repo setup containing packages for the ` graphql-playground` and `graphql-playground-electron`.
165
165
You can’t perform that action at this time.
0 commit comments