Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. version: 2.1
  2.  
  3. orbs:
  4. docker-publish: circleci/docker-publish@0.1.6
  5.  
  6. workflows:
  7. build:
  8. jobs:
  9. - docker-publish/publish:
  10. deploy: false
  11. context: dgw
  12. extra_build_args: --build-arg NPM_TOKEN=${NPM_TOKEN}
  13.  
  14. publish:
  15. jobs:
  16. - docker-publish/publish:
  17. image: sensource/dgw-wrk-insert-service-stats
  18. tag: $CIRCLE_TAG
  19. context: dgw
  20. extra_build_args: --build-arg NPM_TOKEN=${NPM_TOKEN}
  21. filters:
  22. # publish on any version tag
  23. tags:
  24. only: /v[0-9]+(\.[0-9]+)*/
  25. # ignore branch commits (they are build but not published)
  26. branches:
  27. ignore: /.*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement