dnsupdater/.gitlab-ci.yml

22 lines
285 B
YAML
Raw Normal View History

2020-10-26 09:42:07 +00:00
image: golang:1.15
stages:
- build
2020-10-26 16:46:59 +00:00
- deploy
2020-10-26 09:42:07 +00:00
build:
stage: build
script:
2020-10-26 16:46:59 +00:00
- make
deploy:
image: docker:latest
stage: deploy
only:
refs:
- master
script:
- docker build . -t llehouerou/dnsupdater:latest
- docker push llehouerou/dnsupdater:latest