GitLab CI: only publish image on develop

This commit is contained in:
Alex Gleason 2022-09-04 15:58:48 -05:00
parent 06646a01df
commit 53be32de34
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -144,6 +144,7 @@ pages:
- develop
docker:
stage: deploy
image: docker:20.10.17
services:
- docker:20.10.17-dind
@ -152,6 +153,6 @@ docker:
- echo $CI_REGISTRY_PASSWORD | docker login -u $CI_REGISTRY_USER $CI_REGISTRY --password-stdin
- docker build -t $CI_REGISTRY_IMAGE .
- docker push $CI_REGISTRY_IMAGE
# only:
# refs:
# - develop
only:
refs:
- develop