File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change 9
9
- cron : " 10 6 * * *"
10
10
11
11
jobs :
12
+
13
+ build :
14
+ name : " Build latest"
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - uses : actions/checkout@v2
18
+ - name : Publish to Registry
19
+
20
+ with :
21
+ name : ${{ secrets.DOCKER_REPO }}
22
+ username : ${{ secrets.DOCKER_USERNAME }}
23
+ password : ${{ secrets.DOCKER_GITHUB_TOKEN }}
24
+ dockerfile : Dockerfile
25
+ buildargs : BASE=buster
26
+ tags : ["latest","buster"]
27
+
12
28
build :
29
+ name : " Build versions"
13
30
runs-on : ubuntu-latest
14
31
15
32
strategy :
16
33
fail-fast : false
17
34
matrix :
18
35
perl-version :
19
- - " latest"
20
36
- " 5.34"
21
37
- " 5.32"
22
38
- " 5.30"
41
57
username : ${{ secrets.DOCKER_USERNAME }}
42
58
password : ${{ secrets.DOCKER_GITHUB_TOKEN }}
43
59
dockerfile : Dockerfile
44
- buildargs : BASE=${{ matrix.perl-version }}
60
+ buildargs : BASE=${{ matrix.perl-version }}-buster
45
61
tags : " ${{ matrix.perl-version }}"
You can’t perform that action at this time.
0 commit comments