File tree Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 99 - cron : " 10 6 * * *"
1010
1111jobs :
12+
13+ latest-build :
14+ name : " Build latest"
15+ runs-on : ubuntu-latest
16+ steps :
17+ - uses : actions/checkout@v2
18+ - name : Publish to Registry
19+ uses : elgohr/Publish-Docker-Github-Action@3.04
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+
1228 build :
29+ name : " Build versions"
1330 runs-on : ubuntu-latest
1431
1532 strategy :
1633 fail-fast : false
1734 matrix :
1835 perl-version :
19- - " latest"
2036 - " 5.34"
2137 - " 5.32"
2238 - " 5.30"
4157 username : ${{ secrets.DOCKER_USERNAME }}
4258 password : ${{ secrets.DOCKER_GITHUB_TOKEN }}
4359 dockerfile : Dockerfile
44- buildargs : BASE=${{ matrix.perl-version }}
60+ buildargs : BASE=${{ matrix.perl-version }}-buster
4561 tags : " ${{ matrix.perl-version }}"
Original file line number Diff line number Diff line change 99 test-job :
1010 runs-on : ubuntu-latest
1111 container :
12- image : perl:${{ matrix.perl-version }}
12+ image : perl:${{ matrix.perl-version }}-buster
1313 strategy :
1414 fail-fast : false
1515 matrix :
You can’t perform that action at this time.
0 commit comments