Commit 692b228e authored by nanahira's avatar nanahira

missing

parent f059dd79
Pipeline #4796 canceled with stages
in 33 seconds
...@@ -85,6 +85,7 @@ combine_full: ...@@ -85,6 +85,7 @@ combine_full:
$SOURCE_IMAGE_2 $SOURCE_IMAGE_2
- docker manifest push $TARGET_IMAGE - docker manifest push $TARGET_IMAGE
#upload_stuff_to_minio:
# stage: deploy # stage: deploy
# tags: # tags:
# - linux # - linux
...@@ -99,6 +100,23 @@ combine_full: ...@@ -99,6 +100,23 @@ combine_full:
# only: # only:
# - master # - master
deploy_latest_full:
stage: deploy
tags:
- docker
script:
- TARGET_IMAGE_2=$CONTAINER_RELEASE_IMAGE
- TARGET_IMAGE=$CONTAINER_RELEASE_IMAGE_FULL
- SOURCE_IMAGE=$CONTAINER_TEST_IMAGE_FULL
- docker pull $SOURCE_IMAGE
- docker tag $SOURCE_IMAGE $TARGET_IMAGE
- docker push $TARGET_IMAGE
- docker tag $SOURCE_IMAGE $TARGET_IMAGE_2
- docker push $TARGET_IMAGE_2
only:
- master
deploy_latest_lite:
stage: deploy
tags: tags:
- docker - docker
script: script:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment