lunch-go/.drone.yml
zvon 6e3f783734
Some checks failed
continuous-integration/drone/push Build is failing
CI: fix docker build, test login
2023-08-25 13:31:48 +02:00

30 lines
481 B
YAML

---
kind: pipeline
type: kubernetes
name: build
platform:
os: linux
arch: amd64
steps:
- name: formatting-check
image: golang
commands:
- test -z $(gofmt -l .)
- name: build
image: docker
commands:
- docker build -f Dockerfile .
---
kind: pipeline
type: kubernetes
name: deploy
platform:
os: linux
arch: amd64
steps:
- name: build
image: docker
commands:
- echo "$DOCKER_PASSWORD" | docker login "docker.zvon.tech" -u "$DOCKER_USERNAME" --password-stdin