Files
github-actions/.drone.yml
Roman Vaníček 836c1329fa
All checks were successful
continuous-integration/drone Build is passing
Alow not a DinD mode of operation
2023-07-28 18:24:39 +02:00

23 lines
445 B
YAML

kind: pipeline
name: default
steps:
- name: build
image: golang:1.19
commands:
- go test ./...
- sh scripts/build.sh
- name: docker
image: plugins/docker
settings:
registry: https://git.ivasoft.cz
username:
from_secret: repo_user
password:
from_secret: repo_pass
repo: git.ivasoft.cz/sw/github-actions
dockerfile: docker/Dockerfile.linux.amd64
tags:
- latest
- ${DRONE_TAG:-latest}