Skip to content

Commit 62bda3c

Browse files
authored
Swapping it out to get the latest.
1 parent 1406730 commit 62bda3c

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

.github/workflows/publish-to-docker.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,30 @@ on:
99
- cron: "10 6 * * *"
1010

1111
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+
uses: elgohr/[email protected]
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"
@@ -41,5 +57,5 @@ jobs:
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 }}"

0 commit comments

Comments
 (0)