Skip to content
Snippets Groups Projects
.gitlab-ci.yml 439 B
Newer Older
florck's avatar
florck committed

florck's avatar
florck committed
test_build_image:
  image: docker:git
florck's avatar
florck committed
  tags:
  - pages
florck's avatar
florck committed
  services:
  - docker:dind
  script:
    - docker build .
  except:
    - tags

build_image:
  image: docker:git
florck's avatar
florck committed
  tags:
  - pages
florck's avatar
florck committed
  services:
  - docker:dind
  script:
    - docker login -u "gitlab-ci-token" -p "$CI_BUILD_TOKEN" $CI_REGISTRY
    - docker build --pull -t "$CI_REGISTRY_IMAGE:$CI_BUILD_TAG" .
    - docker push "$CI_REGISTRY_IMAGE:$CI_BUILD_TAG"
  only:
    - tags