-
Notifications
You must be signed in to change notification settings - Fork 55
/
.drone.yml
93 lines (86 loc) · 2.31 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
---
kind: pipeline
type: docker
name: default
steps:
- name: submodules
image: docker:git
environment:
GIT_USERNAME:
from_secret: git_username
GIT_PASSWORD:
from_secret: git_password
commands:
- git config submodule.secret.url https://$GIT_USERNAME:[email protected]/ripple/lets-secret.git
- git config submodule.pp/maniapp-osu-tools.url https://$GIT_USERNAME:[email protected]/ripple/maniapp-osu-tools.git
- git submodule update --init
- cd pp/maniapp-osu-tools && git config submodule.osu.url https://$GIT_USERNAME:[email protected]/ripple/maniapp-osu.git && cd ../..
- git submodule update --init --recursive
secrets: [ git_username, git_password ]
when:
event:
- push
- name: create-tags
image: busybox
commands:
- cat version | tr -d '\n' > .tags
- name: prepare-docker
image: docker:git
environment:
GIT_USERNAME:
from_secret: git_username
GIT_PASSWORD:
from_secret: git_password
commands:
- git submodule update --init --recursive
- mkdir -p /cache/${DRONE_REPO}/docker
- git clone https://$GIT_USERNAME:[email protected]/ripple/dockerfiles /dockerfiles
- cp /dockerfiles/dockerfiles/lets.Dockerfile Dockerfile
volumes:
- name: cache
path: /cache
secrets: [ git_username, git_password ]
when:
event:
- push
- name: package-docker
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
registry: d.nyodev.xyz
repo: d.nyodev.xyz/ripple/lets
use_cache: true
purge: false
secrets: [ docker_username, docker_password ]
volumes:
- name: docker
path: /var/lib/docker
when:
event:
- push
- name: deploy
image: d.nyodev.xyz/ripple-drone/deploy
settings:
service: lets
secret:
from_secret: deploy_secret
url:
from_secret: deploy_url
secrets: [deploy_secret, deploy_url]
when:
event:
- promote
target:
- production
image_pull_secrets:
- docker_registry_credentials
volumes:
- name: cache
host:
path: /var/cache
- name: docker
host:
path: /var/cache/${DRONE_REPO}/docker