Skip to content

Commit

Permalink
implement release deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Nils Schönwald committed Sep 13, 2018
1 parent 7c5dc77 commit ded2642
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,21 @@ workflows:
version: 2
build-deploy:
jobs:
- checkout
- checkout:
filters:
tags:
only: /.*/
- build:
requires:
- checkout
filters:
tags:
only: /.*/
- deploy-production:
requires:
- build
filters:
branches:
only: 'master'
ignore: /.*/
tags:
only: /^[v|cf_].*/

0 comments on commit ded2642

Please sign in to comment.