Files
postmoogle/.gitlab-ci.yml
2023-10-17 14:19:14 +03:00

29 lines
487 B
YAML

stages:
- test
- release
lint:
stage: test
image: registry.gitlab.com/etke.cc/base/build
script:
- just lint
unit:
stage: test
image: registry.gitlab.com/etke.cc/base/build
script:
- just test
docker:
stage: release
only: ['main', 'tags']
services:
- docker:dind
image: docker
before_script:
- apk --no-cache add git just --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community
script:
- just login docker
tags:
- docker