-
Notifications
You must be signed in to change notification settings - Fork 8
/
.drone.bk.yaml
82 lines (75 loc) · 1.43 KB
/
.drone.bk.yaml
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
---
kind: pipeline
type: docker
name: default
platform:
os: linux
arch: amd64
steps:
- name: lint
image: node:lts
commands:
- npm install
- npm run lint
when:
branch:
- main
event:
- push
- pull_request
- name: build
image: node:lts
commands:
- npm install
- UI_BASE_PATH=//s3-ap-southeast-2.amazonaws.com/autok3s-ui/static/ npm run build
when:
branch:
- main
event:
- push
- pull_request
- tag
- name: build-tag
image: node:lts
commands:
- ./scripts/build-static
when:
event:
- tag
- name: upload-latest
pull: default
image: plugins/s3
settings:
bucket: autok3s-ui
region: ap-southeast-2
acl: public-read
access_key:
from_secret: aws_access_id
secret_key:
from_secret: aws_access_secret
source: dist/static/**/*
strip_prefix: dist/static
target: /static
when:
branch:
- main
event:
- push
- name: upload
image: plugins/s3
settings:
bucket: autok3s-ui
region: ap-southeast-2
acl: public-read
access_key:
from_secret: aws_access_id
secret_key:
from_secret: aws_access_secret
source: dist/${DRONE_TAG}.tar.gz
strip_prefix: dist/
target: /
when:
event:
- tag
node:
instance: agent-amd64