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