-
Notifications
You must be signed in to change notification settings - Fork 0
/
.estafette.yaml
50 lines (44 loc) · 930 Bytes
/
.estafette.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
builder:
track: dev
labels:
type: library
app-group: estafette-ci
team: estafette
language: python
version:
semver:
major: 0
minor: 3
stages:
bake:
image: extensions/docker:dev
action: build
severity: unknown
repositories:
- estafette
path: .
copy:
- /etc/ssl/certs/ca-certificates.crt
push-to-docker-hub:
image: extensions/docker:dev
action: push
repositories:
- estafette
tags:
- latest
when: status == 'succeeded' &&
branch == 'main'
tag-revision:
image: bitnami/git
commands:
- git tag ${ESTAFETTE_BUILD_VERSION}
- git push origin ${ESTAFETTE_BUILD_VERSION}
when: branch == 'main' &&
status == 'succeeded'
slack-notify:
image: extensions/slack-build-status:dev
workspace: estafette
channels:
- "#build-status"
when: status == 'succeeded' ||
status == 'failed'