22 lines
285 B
YAML
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
|
|
|