-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
86 lines (80 loc) · 1.7 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
kind: pipeline
name: default
type: docker
platform:
os: linux
arch: arm64
clone:
skip_verify: true
steps:
- name: restore-cache
privileged: true
pull: always
image: 2martens/drone-volume-cache
settings:
restore: true
mount:
- ./node_modules
volumes:
- name: cache
path: /cache
- name: build
pull: always
image: node:18-alpine
commands:
- npm install
- npm run build:production
- cp /drone/src/.htaccess /drone/src/dist/www/
- name: rebuild-cache
privileged: true
image: 2martens/drone-volume-cache
settings:
rebuild: true
mount:
- ./node_modules
volumes:
- name: cache
path: /cache
- name: deploy
pull: always
image: 2martens/drone-rsync
settings:
hosts: [ "gienah.uberspace.de" ]
user: wahlfron
source: /drone/src/dist/www/.
target: ~/tmp/build
recursive: true
delete: true
port: 22
key:
from_secret: rsync_key
script:
- shopt -s dotglob
- rm -rf tmp/old.build
- mkdir tmp/old.build
- cp -r html/* tmp/old.build/
- rm -rf html/*
- cp -r tmp/build/* html/
- rm -rf tmp/build
- name: notify
pull: always
image: 2martens/drone-email
environment:
EMAIL_USERNAME:
from_secret: email_username
EMAIL_PASSWORD:
from_secret: email_password
settings:
host: howell.uberspace.de
port: 587
from: Drone <[email protected]>
secrets: [email_username, email_password]
when:
status: [ failure ]
volumes:
- name: cache
host:
path: /var/lib/drone/cache
trigger:
branch:
- main