Files
hlaskovnik-reimagined/.gitlab-ci.yml
T
2026-03-19 10:35:32 +01:00

16 lines
329 B
YAML

stages:
- build
variables:
IMAGE_NAME: registry.gitlab.com/$CI_PROJECT_PATH
build:
stage: build
image: docker:latest
services:
- docker:dind
script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
- docker build -t $IMAGE_NAME:latest .
- docker push $IMAGE_NAME:latest