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 80f5feb commit 0e78a2bCopy full SHA for 0e78a2b
.circleci/config.yml
@@ -24,3 +24,10 @@ jobs:
24
key: v2-dependencies-{{ checksum "yarn.lock" }}
25
26
- run: yarn semantic-release || true
27
+
28
+ - run:
29
+ name: Maybe deploy to gh-pages
30
+ command: |
31
+ if [[ $CIRCLE_BRANCH == master ]]; then
32
+ yarn docs
33
+ fi
example/pages/index.tsx
@@ -1 +1 @@
1
-export default () => <h1>Hello world?</h1>
+export default () => <h1>Hello world! :D</h1>
0 commit comments