Skip to content

Commit 72683b3

Browse files
authored
Merge pull request #24 from net-amqp-rabbitmq/main
Swapping everything out for `buster`.
2 parents 7c35cea + 342f9a3 commit 72683b3

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
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+
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/[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 }}"

.github/workflows/test-cpanfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
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:

0 commit comments

Comments
 (0)