dnsupdater/.gitlab-ci.yml
2020-10-26 20:46:59 +04:00

22 lines
285 B
YAML

image: golang:1.15
stages:
- build
- deploy
build:
stage: build
script:
- make
deploy:
image: docker:latest
stage: deploy
only:
refs:
- master
script:
- docker build . -t llehouerou/dnsupdater:latest
- docker push llehouerou/dnsupdater:latest