mirror of https://github.com/dirtbags/moth.git
29 lines
492 B
YAML
29 lines
492 B
YAML
stages:
|
|
- test
|
|
- push
|
|
|
|
test:
|
|
stage: test
|
|
image: golang:1.17
|
|
only:
|
|
refs:
|
|
- main
|
|
- merge_requests
|
|
script:
|
|
- go test ./...
|
|
|
|
push:
|
|
stage: push
|
|
image:
|
|
name: docker:19.03.12
|
|
rules:
|
|
- if: $CI_COMMIT_TAG
|
|
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
|
script:
|
|
- echo "$DOCKER_AUTH_CONFIG" > ~/.docker/config.json
|
|
- >
|
|
docker build
|
|
--tag ghcr.io/dirtbags/moth:$CI_COMMIT_REF_SLUG
|
|
--file build/package/Containerfile
|
|
.
|