Upgrade to Debian 12.7 (#445) #181
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
name: Build images | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- 'main' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
tag: ["latest", "snapshot"] | |
distribution: ["alpine", "debian"] | |
name: ${{ matrix.tag }}-${{ matrix.distribution }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Lint Dockerfile | |
uses: hadolint/[email protected] | |
with: | |
dockerfile: ${{ matrix.distribution }}/Dockerfile | |
config: ".github/hadolint.yml" | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build images | |
run: ./build ${{ matrix.tag }} ${{ matrix.distribution }} |