Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Ignore staging docs deployment (#580)

authored by

Phil Plückthun and committed by
GitHub
4bce84bc b8d4423e

+11 -3
+10 -2
.circleci/config.yml
··· 78 78 - *yarn_cache 79 79 - *yarn 80 80 - run: 81 - name: Deploy Staging Site 81 + name: Build Staging Site 82 82 command: | 83 83 cd packages/site 84 84 yarn run build --staging 85 + - deploy: 86 + name: Deploy Staging Site 87 + command: | 88 + cd packages/site 85 89 node scripts/deploy/surge.js 86 90 87 91 production_site: ··· 94 98 - *yarn_cache 95 99 - *yarn 96 100 - run: 97 - name: Deploy Production Site 101 + name: Build Production Site 98 102 command: | 99 103 cd packages/site 100 104 yarn run build 105 + - deploy: 106 + name: Deploy Production Site 107 + command: | 108 + cd packages/site 101 109 node scripts/deploy/aws.js 102 110 103 111 workflows:
+1 -1
packages/site/scripts/deploy/surge.js
··· 37 37 if (require.main === module) { 38 38 main().catch(err => { 39 39 console.error(err); // eslint-disable-line no-console 40 - process.exit(1); // eslint-disable-line no-process-exit 40 + process.exit(0); // We don't fail CI on errors in staging 41 41 }); 42 42 }