testing registry

This commit is contained in:
2024-05-29 22:19:33 +03:00
parent fcd7f5f95e
commit 3f2d6093d0

View File

@@ -31,8 +31,7 @@ variables:
make_image: make_image:
stage: build stage: build
needs: needs: ['pytest']
- pytest
image: docker:26.1.3 image: docker:26.1.3
only: only:
# We want this job to be run on tags only. # We want this job to be run on tags only.
@@ -75,7 +74,7 @@ make_image:
# Here, the goal is to tag the "master" branch as "latest" # Here, the goal is to tag the "master" branch as "latest"
Push latest: Push latest:
needs: make_image needs: ['make_image']
variables: variables:
# We are just playing with Docker here. # We are just playing with Docker here.
# We do not need GitLab to clone the source code. # We do not need GitLab to clone the source code.
@@ -104,7 +103,7 @@ Push latest:
# Finally, the goal here is to Docker tag any Git tag # Finally, the goal here is to Docker tag any Git tag
# GitLab will start a new pipeline everytime a Git tag is created, which is pretty awesome # GitLab will start a new pipeline everytime a Git tag is created, which is pretty awesome
Push commit: Push commit:
needs: make_image needs: ['make_image']
variables: variables:
# Again, we do not need the source code here. Just playing with Docker. # Again, we do not need the source code here. Just playing with Docker.
GIT_STRATEGY: none GIT_STRATEGY: none
@@ -132,7 +131,7 @@ Push commit:
- docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME - docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME
Push tag: Push tag:
needs: make_image needs: ['make_image']
variables: variables:
# Again, we do not need the source code here. Just playing with Docker. # Again, we do not need the source code here. Just playing with Docker.
GIT_STRATEGY: none GIT_STRATEGY: none