Created
August 9, 2019 19:45
-
-
Save jdforsythe/ab10dcabc85d80120628814254702f53 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2.1 | |
orbs: | |
docker-publish: circleci/[email protected] | |
workflows: | |
build: | |
jobs: | |
- docker-publish/publish: | |
deploy: false | |
context: dgw | |
extra_build_args: --build-arg NPM_TOKEN=${NPM_TOKEN} | |
publish: | |
jobs: | |
- docker-publish/publish: | |
image: sensource/dgw-wrk-insert-service-stats | |
tag: $CIRCLE_TAG | |
context: dgw | |
extra_build_args: --build-arg NPM_TOKEN=${NPM_TOKEN} | |
filters: | |
# publish on any version tag | |
tags: | |
only: /v[0-9]+(\.[0-9]+)*/ | |
# ignore branch commits (they are build but not published) | |
branches: | |
ignore: /.*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment