mirror of
https://github.com/SinTan1729/chhoto-url
synced 2024-12-25 15:18:37 -06:00
Remove .gitlab-ci.yml file
This commit is contained in:
parent
0add351480
commit
a9c21a214f
1 changed files with 0 additions and 41 deletions
|
@ -1,41 +0,0 @@
|
|||
# This file is a template, and might need editing before it works on your project.
|
||||
docker-build-main:
|
||||
# Official docker image, develop tag
|
||||
image: docker:latest
|
||||
stage: build
|
||||
services:
|
||||
- docker:dind
|
||||
before_script:
|
||||
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
|
||||
script:
|
||||
- docker pull "$CI_REGISTRY_IMAGE:develop-depsonly" || true
|
||||
- docker build --cache-from "$CI_REGISTRY_IMAGE:develop-depsonly" --target build -t "$CI_REGISTRY_IMAGE:develop-depsonly" .
|
||||
- docker push "$CI_REGISTRY_IMAGE:develop-depsonly"
|
||||
- docker build -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
|
||||
|
||||
docker-build-tag:
|
||||
# Official docker image, tagged release (also updates latest)
|
||||
image: docker:latest
|
||||
stage: build
|
||||
services:
|
||||
- docker:dind
|
||||
before_script:
|
||||
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
|
||||
script:
|
||||
- docker pull "$CI_REGISTRY_IMAGE:develop-depsonly" || true
|
||||
- docker build --cache-from "$CI_REGISTRY_IMAGE:develop-depsonly" -t "$CI_REGISTRY_IMAGE:develop-depsonly"
|
||||
- docker push "$CI_REGISTRY_IMAGE:develop-depsonly"
|
||||
- docker build -t "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG" -t "$CI_REGISTRY_IMAGE" .
|
||||
- docker push "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG"
|
||||
- docker push "$CI_REGISTRY_IMAGE:latest"
|
||||
rules:
|
||||
- if: $CI_COMMIT_BRANCH != "main"
|
||||
when: never
|
||||
- if: $CI_COMMIT_TAG
|
||||
when: on_success
|
Loading…
Reference in a new issue