-
Notifications
You must be signed in to change notification settings - Fork 4
47 lines (41 loc) · 949 Bytes
/
build.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
name: Docker Build
on:
push:
branches:
- main
- dev
- cicd
- dockerfiles-consolidation
jobs:
build_controller:
uses: ./.github/workflows/build-template.yml
with:
image-name: controller
tag: ${GITHUB_REF#refs/heads/}
secrets: inherit
build_vnc:
uses: ./.github/workflows/build-template.yml
with:
image-name: vnc
tag: ${GITHUB_REF#refs/heads/}
secrets: inherit
build_firefox:
uses: ./.github/workflows/build-template.yml
with:
image-name: firefox
tag: ${GITHUB_REF#refs/heads/}
secrets: inherit
build_base:
uses: ./.github/workflows/build-template.yml
with:
image-name: base
tag: ${GITHUB_REF#refs/heads/}
secrets: inherit
build_master:
needs:
- build_base
uses: ./.github/workflows/build-template.yml
with:
image-name: master
tag: ${GITHUB_REF#refs/heads/}
secrets: inherit