Migrate builds to drone
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Marko Korhonen 2022-06-11 14:43:22 +03:00
parent 10951ae362
commit 25e4a3bb7f
No known key found for this signature in database
GPG key ID: 911B85FBC6003FE5
2 changed files with 12 additions and 13 deletions

12
.drone.yml Normal file
View file

@ -0,0 +1,12 @@
kind: pipeline
name: default
steps:
- name: docker
image: plugins/docker
settings:
username: functionalhacker
password:
from_secret: docker_hub_password
repo: functionalhacker/gitea-asciidoc
tags: latest

View file

@ -1,13 +0,0 @@
.PHONY: pull image push
REPO=docker.io
IMAGE=functionalhacker/gitea-asciidoc
pull:
@docker pull gitea/gitea:1
image: pull
@docker build . -t ${REPO}/${IMAGE}
push: image
@docker push ${REPO}/${IMAGE}