-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
63 lines (56 loc) · 1 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
---
kind: pipeline
name: testing
type: docker
slack:
when: false
steps:
- name: test
image: node:16-alpine
commands:
- npm ci
- npm run lint
trigger:
ref:
- refs/heads/develop
- "refs/tags/**"
- "refs/pull/**"
---
kind: pipeline
name: deploy
type: docker
steps:
- name: dry-run
pull: always
image: plugins/docker
settings:
dry_run: true
repo: ghcr.io/goodwillaz/drone-convert-pipeline
registry: ghcr.io
username: goodwillaz-ci
password:
from_secret: gh_token
when:
event:
- pull_request
- name: publish
pull: always
image: plugins/docker
settings:
auto_tag: true
repo: ghcr.io/goodwillaz/drone-convert-pipeline
registry: ghcr.io
username: goodwillaz-ci
password:
from_secret: gh_token
when:
event:
exclude:
- pull_request
trigger:
ref:
- refs/heads/develop
- "refs/tags/**"
- "refs/pull/**"
depends_on:
- testing