-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitlab-ci.yml
49 lines (45 loc) · 998 Bytes
/
.gitlab-ci.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
# This file is a template, and might need editing before it works on your project.
default:
# Official docker image.
image: docker:latest
stage: build
services:
- docker:dind
before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
bpow-client:
variables:
PATH: boompow-client
IMAGE: bpow-client
script:
- docker build --pull -t "$IMAGE" $PATH
- docker push "$IMAGE"
only:
- main
dpow-client:
variables:
PATH: dpow-client
IMAGE: dpow-client
script:
- docker build --pull -t "$IMAGE" $PATH
- docker push "$IMAGE"
only:
- main
nano-work-server:
variables:
PATH: nano-work-server
IMAGE: nano-work-server
script:
- docker build --pull -t "$IMAGE" $PATH
- docker push "$IMAGE"
only:
- main
banano-vanity:
variables:
PATH: banano-vanity
IMAGE: banano-vanity
script:
- docker build --pull -t "$IMAGE" $PATH
- docker push "$IMAGE"
only:
- main