-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
61 lines (59 loc) · 1.27 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
kind: pipeline
name: default
steps:
- name: restore-cache
image: drillster/drone-volume-cache
volumes:
- name: cache
path: /cache
settings:
restore: true
mount:
- ./node_modules
- ./bower_components
- name: build
image: node
commands:
- yarn
- yarn build
environment:
GATSBY_APP_BACKEND_URL:
from_secret: GATSBY_APP_BACKEND_URL
GATSBY_EXPERIMENTAL_ROUTING_APIS:
from_secret: GATSBY_EXPERIMENTAL_ROUTING_APIS
- name: stage
image: alpine
volumes:
- name: nginx
path: /drone/src/nginx
commands:
- cp -r out nginx/stage
- name: deploy
image: alpine
volumes:
- name: nginx
path: /drone/src/nginx
commands:
- rm -r nginx/previous
- mv nginx/public nginx/previous
- mv nginx/stage nginx/public
when:
branch:
- main
- name: rebuild-cache
image: drillster/drone-volume-cache
volumes:
- name: cache
path: /cache
settings:
rebuild: true
mount:
- ./node_modules
- ./bower_components
volumes:
- name: cache
host:
path: /tmp/cache/knockout.videopoker.academy
- name: nginx
host:
path: /var/www/knockout.videopoker.academy