@@ -22,17 +22,17 @@ jobs:
22
22
- uses : actions/checkout@v2
23
23
24
24
- name : Build images
25
- run : ./bin/docker-build.sh alpine 0
25
+ run : make build- alpine
26
26
27
27
- name : Test images
28
- run : ./bin/test.sh alpine
28
+ run : make test- alpine
29
29
30
30
- name : Log into registry
31
31
run : echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u ${{ github.actor }} --password-stdin
32
32
if : github.ref == 'refs/heads/master'
33
33
34
34
- name : Push images
35
- run : ./bin/docker-push.sh alpine 0
35
+ run : make push- alpine
36
36
if : github.ref == 'refs/heads/master'
37
37
38
38
docker_amazonlinux :
@@ -41,17 +41,17 @@ jobs:
41
41
- uses : actions/checkout@v2
42
42
43
43
- name : Build images
44
- run : ./bin/docker-build.sh amazonlinux 0
44
+ run : make build- amazonlinux
45
45
46
46
- name : Test images
47
- run : ./bin/test.sh amazonlinux
47
+ run : make test- amazonlinux
48
48
49
49
- name : Log into registry
50
50
run : echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u ${{ github.actor }} --password-stdin
51
51
if : github.ref == 'refs/heads/master'
52
52
53
53
- name : Push images
54
- run : ./bin/docker-push.sh amazonlinux 0
54
+ run : make push- amazonlinux
55
55
if : github.ref == 'refs/heads/master'
56
56
57
57
docker_centos :
@@ -60,17 +60,17 @@ jobs:
60
60
- uses : actions/checkout@v2
61
61
62
62
- name : Build images
63
- run : ./bin/docker-build.sh centos 0
63
+ run : make build- centos
64
64
65
65
- name : Test images
66
- run : ./bin/test.sh centos
66
+ run : make test- centos
67
67
68
68
- name : Log into registry
69
69
run : echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u ${{ github.actor }} --password-stdin
70
70
if : github.ref == 'refs/heads/master'
71
71
72
72
- name : Push images
73
- run : ./bin/docker-push.sh centos 0
73
+ run : make push- centos
74
74
if : github.ref == 'refs/heads/master'
75
75
76
76
docker_debian :
@@ -79,17 +79,17 @@ jobs:
79
79
- uses : actions/checkout@v2
80
80
81
81
- name : Build images
82
- run : ./bin/docker-build.sh debian 0
82
+ run : make build- debian
83
83
84
84
- name : Test images
85
- run : ./bin/test.sh debian
85
+ run : make test- debian
86
86
87
87
- name : Log into registry
88
88
run : echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u ${{ github.actor }} --password-stdin
89
89
if : github.ref == 'refs/heads/master'
90
90
91
91
- name : Push images
92
- run : ./bin/docker-push.sh debian 0
92
+ run : make push- debian
93
93
if : github.ref == 'refs/heads/master'
94
94
95
95
docker_fedora :
@@ -98,17 +98,17 @@ jobs:
98
98
- uses : actions/checkout@v2
99
99
100
100
- name : Build images
101
- run : ./bin/docker-build.sh fedora 0
101
+ run : make build- fedora
102
102
103
103
- name : Test images
104
- run : ./bin/test.sh fedora
104
+ run : make test- fedora
105
105
106
106
- name : Log into registry
107
107
run : echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u ${{ github.actor }} --password-stdin
108
108
if : github.ref == 'refs/heads/master'
109
109
110
110
- name : Push images
111
- run : ./bin/docker-push.sh fedora 0
111
+ run : make push- fedora
112
112
if : github.ref == 'refs/heads/master'
113
113
114
114
docker_ubuntu :
@@ -117,15 +117,15 @@ jobs:
117
117
- uses : actions/checkout@v2
118
118
119
119
- name : Build images
120
- run : ./bin/docker-build.sh ubuntu 0
120
+ run : make build- ubuntu
121
121
122
122
- name : Test images
123
- run : ./bin/test.sh ubuntu
123
+ run : make test- ubuntu
124
124
125
125
- name : Log into registry
126
126
run : echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u ${{ github.actor }} --password-stdin
127
127
if : github.ref == 'refs/heads/master'
128
128
129
129
- name : Push images
130
- run : ./bin/docker-push.sh ubuntu 0
130
+ run : make push- ubuntu
131
131
if : github.ref == 'refs/heads/master'
0 commit comments