Skip to content
This repository was archived by the owner on Jan 11, 2025. It is now read-only.

Commit 61a730d

Browse files
small fix for workflow auto-update
1 parent 435a4fa commit 61a730d

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.github/workflows/auto_update.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ jobs:
2222
- uses: actions/checkout@v2
2323

2424
- name: Build images
25-
run: ./bin/docker-build.sh alpine 0
25+
run: make build-alpine
2626

2727
- name: Test images
28-
run: ./bin/test.sh alpine
28+
run: make test-alpine
2929

3030
- name: Log into registry
3131
run: echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u ${{ github.actor }} --password-stdin
3232
if: github.ref == 'refs/heads/master'
3333

3434
- name: Push images
35-
run: ./bin/docker-push.sh alpine 0
35+
run: make push-alpine
3636
if: github.ref == 'refs/heads/master'
3737

3838
docker_amazonlinux:
@@ -41,17 +41,17 @@ jobs:
4141
- uses: actions/checkout@v2
4242

4343
- name: Build images
44-
run: ./bin/docker-build.sh amazonlinux 0
44+
run: make build-amazonlinux
4545

4646
- name: Test images
47-
run: ./bin/test.sh amazonlinux
47+
run: make test-amazonlinux
4848

4949
- name: Log into registry
5050
run: echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u ${{ github.actor }} --password-stdin
5151
if: github.ref == 'refs/heads/master'
5252

5353
- name: Push images
54-
run: ./bin/docker-push.sh amazonlinux 0
54+
run: make push-amazonlinux
5555
if: github.ref == 'refs/heads/master'
5656

5757
docker_centos:
@@ -60,17 +60,17 @@ jobs:
6060
- uses: actions/checkout@v2
6161

6262
- name: Build images
63-
run: ./bin/docker-build.sh centos 0
63+
run: make build-centos
6464

6565
- name: Test images
66-
run: ./bin/test.sh centos
66+
run: make test-centos
6767

6868
- name: Log into registry
6969
run: echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u ${{ github.actor }} --password-stdin
7070
if: github.ref == 'refs/heads/master'
7171

7272
- name: Push images
73-
run: ./bin/docker-push.sh centos 0
73+
run: make push-centos
7474
if: github.ref == 'refs/heads/master'
7575

7676
docker_debian:
@@ -79,17 +79,17 @@ jobs:
7979
- uses: actions/checkout@v2
8080

8181
- name: Build images
82-
run: ./bin/docker-build.sh debian 0
82+
run: make build-debian
8383

8484
- name: Test images
85-
run: ./bin/test.sh debian
85+
run: make test-debian
8686

8787
- name: Log into registry
8888
run: echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u ${{ github.actor }} --password-stdin
8989
if: github.ref == 'refs/heads/master'
9090

9191
- name: Push images
92-
run: ./bin/docker-push.sh debian 0
92+
run: make push-debian
9393
if: github.ref == 'refs/heads/master'
9494

9595
docker_fedora:
@@ -98,17 +98,17 @@ jobs:
9898
- uses: actions/checkout@v2
9999

100100
- name: Build images
101-
run: ./bin/docker-build.sh fedora 0
101+
run: make build-fedora
102102

103103
- name: Test images
104-
run: ./bin/test.sh fedora
104+
run: make test-fedora
105105

106106
- name: Log into registry
107107
run: echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u ${{ github.actor }} --password-stdin
108108
if: github.ref == 'refs/heads/master'
109109

110110
- name: Push images
111-
run: ./bin/docker-push.sh fedora 0
111+
run: make push-fedora
112112
if: github.ref == 'refs/heads/master'
113113

114114
docker_ubuntu:
@@ -117,15 +117,15 @@ jobs:
117117
- uses: actions/checkout@v2
118118

119119
- name: Build images
120-
run: ./bin/docker-build.sh ubuntu 0
120+
run: make build-ubuntu
121121

122122
- name: Test images
123-
run: ./bin/test.sh ubuntu
123+
run: make test-ubuntu
124124

125125
- name: Log into registry
126126
run: echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u ${{ github.actor }} --password-stdin
127127
if: github.ref == 'refs/heads/master'
128128

129129
- name: Push images
130-
run: ./bin/docker-push.sh ubuntu 0
130+
run: make push-ubuntu
131131
if: github.ref == 'refs/heads/master'

0 commit comments

Comments
 (0)