circleci: Fix sed command hopefully
This commit is contained in:
parent
eaf2edd6c3
commit
820bf17487
1 changed files with 2 additions and 1 deletions
|
@ -18,7 +18,8 @@ jobs:
|
||||||
- setup_remote_docker
|
- setup_remote_docker
|
||||||
- run:
|
- run:
|
||||||
name: Replace version in config
|
name: Replace version in config
|
||||||
command: sed -i .org "s/circleci_version_number/${CIRCLE_BUILD_NUM}/g" config/config.default.json
|
command: |
|
||||||
|
sed -i .org "s/circleci_version_number/${CIRCLE_BUILD_NUM}/g" config/config.default.json
|
||||||
- run:
|
- run:
|
||||||
name: Build docker image
|
name: Build docker image
|
||||||
command: docker build -t ${di}:build_${CIRCLE_BUILD_NUM} -t ${di}:${CIRCLE_SHA1} -t ${di}:${dtag} .
|
command: docker build -t ${di}:build_${CIRCLE_BUILD_NUM} -t ${di}:${CIRCLE_SHA1} -t ${di}:${dtag} .
|
||||||
|
|
Loading…
Reference in a new issue