Skip to content

Commit

Permalink
Do Merkely log of prod deployment after deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
JonJagger committed May 22, 2021
1 parent 157a919 commit e05a6f8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,26 +66,32 @@ workflows:
version: 2
build-publish-deploy:
jobs:

- build-publish:
context: cyberdojo-context
filters:
branches:
only: [ master ]

- deploy-to-beta:
context: cyberdojo-context
requires: [ build-publish ]

- merkely-log-deployment-to-beta:
context: cyberdojo-context
requires: [ deploy-to-beta ]

- approve-to-prod:
type: approval
requires: [ deploy-to-beta ]

- deploy-to-prod:
context: cyberdojo-context
requires: [ approve-to-prod ]

- merkely-log-deployment-to-prod:
context: cyberdojo-context
requires: [ approve-to-prod ]
requires: [ deploy-to-prod ]

every-hour:
triggers:
Expand Down

0 comments on commit e05a6f8

Please sign in to comment.