Files
postmoogle/.gitlab-ci.yml

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: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/jdrouet/docker-with-buildx:latest
before_script:
- apk --no-cache add just
script:
- just login docker
tags:
- docker