container-logs/.drone.yml

32 lines
585 B
YAML
Raw Permalink Normal View History

2020-11-21 09:27:06 +00:00
kind: pipeline
type: docker
name: amd64
steps:
2021-04-07 19:23:37 +00:00
- name: push-latest-commit
environment:
GIT_PUSH_SSH_KEY:
from_secret:
github_ssh_key
image: appleboy/drone-git-push:0.2.0-linux-amd64
settings:
remote: git@github.com:volker-raschek/container-logs.git
force: true
when:
repo:
- volker.raschek/container-logs
branch:
- master
event:
- push
2020-11-21 09:27:06 +00:00
- name: build-linux-amd64
image: docker.io/volkerraschek/build-image:latest
commands:
2021-04-07 19:23:37 +00:00
- make bin/linux/amd64/container-logs
2020-11-21 09:27:06 +00:00
when:
event:
- push
- pull_request
2021-04-07 19:23:37 +00:00
- tag