ndrg13
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
.circleci/config.yml
|
|
|
@ -91,13 +91,13 @@ jobs: |
|
|
|
echo "$DOCKERHUB_PASSWORD" | docker login -u "$DOCKERHUB_LOGIN" --password-stdin |
|
|
|
- run: |
|
|
|
name: Tag Docker image |
|
|
|
command: docker tag $IMAGE_NAME:app nicodrg/my-awesome-ci-expr:$CIRCLE_BUILD_NUM |
|
|
|
command: docker tag $IMAGE_NAME:app $DOCKERHUB_LOGIN/$IMAGE_NAME:$CIRCLE_BUILD_NUM |
|
|
|
- run: |
|
|
|
name: Tag Docker image |
|
|
|
command: docker tag $IMAGE_NAME:app nicodrg/my-awesome-ci-expr:latest |
|
|
|
command: docker tag $IMAGE_NAME:app $DOCKERHUB_LOGIN/$IMAGE_NAME:latest |
|
|
|
- run: |
|
|
|
name: Push to Docker Hub |
|
|
|
command: docker push $IMAGE_NAME:latest |
|
|
|
command: docker push $DOCKERHUB_LOGIN/$IMAGE_NAME:latest |
|
|
|
generate_doc: |
|
|
|
executor: node-executor |
|
|
|
steps: |
|
|
|
|