Hacker News new | ask | show | jobs
by StriverGuy 1367 days ago
This is somewhat helpful, however it doesn't get past the main concern of rollbacks/deploy approvals.

We already use CI to build and prep the versions each time we go out to production, but if we miss anything in QA we are up a creek without a paddle.

1 comments

With the link that @itake posted above, you can definitely use CircleCI to do the deploy automatically. Now if you're concerned about missing something in QA, you could add an approval step (https://circleci.com/docs/workflows#holding-a-workflow-for-a...) in your CircleCI pipeline so that the browser extension is deployed locally for testing, and once it's been tested you can have the next steps approved where it deploys to Production (Google). This concern is really the same for anyone, regardless of if you use CircleCI or not.

DISCLAIMER: I work for CircleCI