forked from osuripple/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
46 lines (43 loc) · 1.13 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
---
kind: pipeline
type: docker
name: default
steps:
- name: prepare-docker
image: docker:git
environment:
GIT_USERNAME:
from_secret: git_username
GIT_PASSWORD:
from_secret: git_password
commands:
- mkdir -p /cache/${DRONE_REPO}/docker
- git clone https://$GIT_USERNAME:[email protected]/ripple/dockerfiles /dockerfiles
- grep "const version" doc.go | cut -d'"' -f 2 | cut -c 2- | tr -d '\n' > .tags
- cp /dockerfiles/dockerfiles/rippleapi.Dockerfile Dockerfile
volumes:
- name: cache
path: /cache
secrets: [ git_username, git_password ]
- 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/api
use_cache: true
purge: false
secrets: [ docker_username, docker_password ]
volumes:
- name: docker
path: /var/lib/docker
volumes:
- name: cache
host:
path: /var/cache
- name: docker
host:
path: /var/cache/${DRONE_REPO}/docker