File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,17 @@ services:
4
4
- docker
5
5
6
6
script : make node package enable integration
7
-
8
7
before_deploy :
9
8
- echo "$DOCKER_PASSWORD" | docker login "$DOCKER_REGISTRY" -u "$DOCKER_USERNAME" --password-stdin;
10
9
11
10
deploy :
12
11
provider : script
13
12
script : make push
14
13
on :
15
- branch : master
14
+ branch : master
15
+
16
+ jobs :
17
+ include :
18
+ - stage : verify installation
19
+ install : skip
20
+ script : make pull
Original file line number Diff line number Diff line change @@ -36,6 +36,10 @@ enable: install
36
36
@echo " ### enable plugin ${PLUGIN_NAME} :${PLUGIN_TAG} "
37
37
docker plugin enable ${PLUGIN_NAME} :${PLUGIN_TAG}
38
38
39
+ pull : clean
40
+ @echo " ### install plugin ${PLUGIN_NAME} :${PLUGIN_TAG} "
41
+ docker plugin install ${PLUGIN_NAME} :${PLUGIN_TAG}
42
+
39
43
push : install
40
44
@echo " ### push plugin ${PLUGIN_NAME} :${PLUGIN_TAG} "
41
45
docker plugin push ${PLUGIN_NAME} :${PLUGIN_TAG}
You can’t perform that action at this time.
0 commit comments