Skip to content
This repository has been archived by the owner on Jan 22, 2021. It is now read-only.

Commit

Permalink
docker tags don't like + signs
Browse files Browse the repository at this point in the history
  • Loading branch information
jsturtevant committed Aug 14, 2018
1 parent adcd513 commit 5e6e68d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- checkout
- setup_remote_docker
- run: |
echo 'export VERSION="$(if [ -z ${CIRCLE_TAG} ]; then echo "beta"; else echo "$CIRCLE_TAG"; fi)+$CIRCLE_BUILD_NUM"' >> $BASH_ENV
echo 'export VERSION="$(if [ -z ${CIRCLE_TAG} ]; then echo "beta"; else echo "$CIRCLE_TAG"; fi)-$CIRCLE_BUILD_NUM"' >> $BASH_ENV
- run: |
make build
- run:
Expand All @@ -38,7 +38,7 @@ jobs:
steps:
- setup_remote_docker
- run: |
echo 'export VERSION="$(if [ -z ${CIRCLE_TAG} ]; then echo "beta"; else echo "$CIRCLE_TAG"; fi)+$CIRCLE_BUILD_NUM"' >> $BASH_ENV
echo 'export VERSION="$(if [ -z ${CIRCLE_TAG} ]; then echo "beta"; else echo "$CIRCLE_TAG"; fi)-$CIRCLE_BUILD_NUM"' >> $BASH_ENV
- restore_cache:
keys:
- v1-{{ .Branch }}
Expand Down

0 comments on commit 5e6e68d

Please sign in to comment.