Build script
Some checks reported errors
continuous-integration/drone Build encountered an error

This commit is contained in:
kieran 2024-05-01 17:13:17 +01:00
parent c4aae42fcd
commit 785847a49c
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

20
.drone.yml Normal file
View File

@ -0,0 +1,20 @@
kind: pipeline
type: kubernetes
name: default
metadata:
namespace: git
steps:
- name: build
image: docker
privileged: true
environment:
TOKEN:
from_secret: gitea
commands:
- dockerd &
- docker login -u kieran -p $TOKEN git.v0l.io
- docker buildx build --push -t git.v0l.io/kieran/void-cat-rs:latest .
- kill $(cat /var/run/docker.pid)