This repository was archived by the owner on Mar 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.drone.yml
More file actions
67 lines (64 loc) · 1.19 KB
/
Copy path.drone.yml
File metadata and controls
67 lines (64 loc) · 1.19 KB
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
kind: pipeline
type: docker
name: build
steps:
- name: publish
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: tea.urek.eu/urek/steam-workshop-monitor
cache_from: tea.urek.eu/urek/steam-workshop-monitor:latest
registry: tea.urek.eu
tags: latest
trigger:
branch:
- main
event:
- push
- custom
---
kind: pipeline
name: portainer update
steps:
- name: send
image: plugins/webhook
settings:
urls:
from_secret: portainer_hook
trigger:
branch:
- main
status:
- success
- custom
depends_on:
- build
---
kind: pipeline
name: notify webhook
steps:
- name: discord notification
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: webhook_id
webhook_token:
from_secret: webhook_token
message: >
{{#success build.status}}
build {{build.number}} succeeded. Good job.
{{else}}
build {{build.number}} failed. Fix me please.
{{/success}}
trigger:
branch:
- main
status:
- success
- failure
- custom
depends_on:
- build