1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-10-16 21:33:54 -05:00
chhoto-url/.gitlab-ci.yml

34 lines
1 KiB
YAML
Raw Normal View History

2020-11-01 09:22:19 -06:00
# This file is a template, and might need editing before it works on your project.
docker-build-main:
2023-02-28 17:47:29 -06:00
# Official docker image, develop tag
2020-11-01 09:22:19 -06:00
image: docker:latest
stage: build
services:
2022-11-04 18:45:14 -05:00
- docker:dind
2020-11-01 09:22:19 -06:00
before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
script:
2023-02-28 17:47:29 -06:00
- docker build --pull -t "$CI_REGISTRY_IMAGE:develop" .
- docker push "$CI_REGISTRY_IMAGE:develop"
rules:
- if: $CI_COMMIT_BRANCH != "main"
when: never
- if: $CI_COMMIT_TAG == null
when: on_success
2020-11-01 09:22:19 -06:00
2023-02-28 17:47:29 -06:00
docker-build-tag:
# Official docker image, tagged release (also updates latest)
2020-11-01 09:22:19 -06:00
image: docker:latest
stage: build
services:
2022-11-04 18:45:14 -05:00
- docker:dind
2020-11-01 09:22:19 -06:00
before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
script:
2023-02-28 17:47:29 -06:00
- docker build --pull -t "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG" -t "$CI_REGISTRY_IMAGE" .
- docker push --all-tags "$CI_REGISTRY_IMAGE"
rules:
- if: $CI_COMMIT_BRANCH != "main"
when: never
- if: $CI_COMMIT_TAG
when: on_success