Publish to Docker #1282
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/marketplace/actions/publish-docker | |
name: Publish to Docker | |
on: | |
push: | |
branches: | |
- "main" | |
schedule: | |
- cron: "10 6 * * *" | |
workflow_dispatch: | |
jobs: | |
prepare-matrix-buster: | |
runs-on: ubuntu-latest | |
name: List perl versions | |
outputs: | |
perl-versions: ${{ steps.action.outputs.perl-versions }} | |
steps: | |
- name: Perl versions action step | |
id: action | |
uses: perl-actions/perl-versions@main | |
with: | |
since-perl: '5.10' | |
with-devel: 'true' | |
# bookworm base images only exist for 5.36 and newer. | |
prepare-matrix-bookworm: | |
runs-on: ubuntu-latest | |
name: List perl versions | |
outputs: | |
perl-versions: ${{ steps.action.outputs.perl-versions }} | |
steps: | |
- name: Perl versions action step | |
id: action | |
uses: perl-actions/perl-versions@main | |
with: | |
since-perl: '5.36' | |
with-devel: 'true' | |
latest-build: | |
name: "Build latest" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
debian-version: [buster,bookworm] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Publish to Registry | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
with: | |
name: ${{ secrets.DOCKER_REPO }} | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_GITHUB_TOKEN }} | |
dockerfile: Dockerfile | |
buildargs: BASE=buster | |
tags: "latest,${{ matrix.debian-version }}" | |
build-buster: | |
name: "Build versions for buster" | |
runs-on: ubuntu-latest | |
needs: | |
- prepare-matrix-buster | |
strategy: | |
fail-fast: false | |
matrix: | |
perl-version: ${{ fromJson (needs.prepare-matrix-buster.outputs.perl-versions) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Publish to Registry | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
with: | |
name: ${{ secrets.DOCKER_REPO }} | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_GITHUB_TOKEN }} | |
dockerfile: Dockerfile | |
buildargs: BASE=${{ matrix.perl-version }}-buster,CPANOUTDATED=1 | |
tags: "${{ matrix.perl-version }}-buster,${{ matrix.perl-version }}" | |
build-bookworm: | |
name: "Build versions for bookworm" | |
runs-on: ubuntu-latest | |
needs: | |
- prepare-matrix-bookworm | |
strategy: | |
fail-fast: false | |
matrix: | |
perl-version: ${{ fromJson (needs.prepare-matrix-bookworm.outputs.perl-versions) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Publish to Registry | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
with: | |
name: ${{ secrets.DOCKER_REPO }} | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_GITHUB_TOKEN }} | |
dockerfile: Dockerfile | |
buildargs: BASE=${{ matrix.perl-version }}-slim-bookworm,CPANOUTDATED=1 | |
tags: "${{ matrix.perl-version }}-slim-bookworm" |