Initial DroneCI + Upstream Sync
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone/pr Build was killed

This commit is contained in:
Jacob Hrbek 2022-09-22 15:41:33 +02:00
parent 31b035b6b1
commit e5365cb96d
Signed by: kreyren
GPG Key ID: 667F0DAFAF09BA2B

18
.drone.yml Executable file

@ -0,0 +1,18 @@
kind: pipeline
type: docker
name: default
steps:
- name: Sync Upstream
image: alpine:3.16.2
environment:
USERNAME:
from_secret: dotya_username
TOKEN:
from_secret: dotya_token
commands:
- apk add guile git # Install dependencies
- git config --global --add safe.directory /drone/src # Stupid drone issue
- git checkout upstream
- git pull
- git push "https://$USERNAME:$TOKEN@git.dotya.ml/kreyren/guix-kreyren.git" upstream