Skip to content

Add Debian Bookworm CI image (#271) #23

Add Debian Bookworm CI image (#271)

Add Debian Bookworm CI image (#271) #23

Workflow file for this run

# https://docs.github.com/en/actions/publishing-packages/publishing-docker-images
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# GitHub recommends pinning actions to a commit SHA.
# To get a newer version, you will need to update the SHA.
# You can also reference a tag or branch, but the action may change without warning.
name: Create and publish a Docker image to Github Packages
on:
push:
branches: ['main']
paths:
- ".github/workflows/publish-image.yml"
- ".github/docker/*"
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
name: Build 'Dockerfile_${{ matrix.dockerfile }}' and publish to Github Packages
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
dockerfile: ['elixir-1-11', 'debian-buster', 'debian-bullseye', 'debian-bookworm', 'alpine-3-16-2', 'alpine-3-17-3']
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: .
file: .github/docker/Dockerfile_${{matrix.dockerfile}}
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ matrix.dockerfile }}
push: true