Skip to content

Build and Publish to Docker #907

Build and Publish to Docker

Build and Publish to Docker #907

Workflow file for this run

name: Build and Publish to Docker
on:
schedule:
- cron: "0 12 * * *"
push:
paths-ignore:
- "*.md"
- "*.txt"
- "*.png"
branches:
- "master"
pull_request:
branches:
- "master"
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # for proper signature verification
submodules: true # for shunit2
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
ignore_paths: tests/shunit2
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build Debian Image for Testing
uses: docker/build-push-action@v6
with:
context: .
load: true
tags: |
${{ github.repository }}:debian
- name: Test Debian Image
run: tests/run ${{ github.repository }}:debian
- name: Build Alpine Image for Testing
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile-alpine
load: true
tags: |
${{ github.repository }}:alpine
- name: Test Alpine Image
run: tests/run ${{ github.repository }}:alpine
- name: Extract metadata for Debian
id: meta-debian
uses: docker/metadata-action@v5
with:
images: ${{ github.repository }}
tags: |
type=raw,value=latest
labels: |
org.opencontainers.image.created=$GITHUB_RUN_DATE
org.opencontainers.image.authors=${{ env.AUTHOR }}
org.opencontainers.image.url=https://hub.docker.com/r/${{ github.repository }}
org.opencontainers.image.source=$GITHUB_SERVER_URL/${{ github.repository }}
- name: Build & Push Debian Image to Docker Hub
uses: docker/build-push-action@v6
with:
context: .
sbom: true
push: true
tags: ${{ steps.meta-debian.outputs.tags }}
platforms: linux/amd64,linux/arm64,linux/arm/v7
- name: Extract metadata for Alpine
id: meta-alpine
uses: docker/metadata-action@v5
with:
images: ${{ github.repository }}
tags: |
type=raw,value=alpine
labels: |
org.opencontainers.image.created=$GITHUB_RUN_DATE
org.opencontainers.image.authors=${{ env.AUTHOR }}
org.opencontainers.image.url=https://hub.docker.com/r/${{ github.repository }}
org.opencontainers.image.source=$GITHUB_SERVER_URL/${{ github.repository }}
- name: Build & Push Alpine Image to Docker Hub
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile-alpine
sbom: true
push: true
tags: ${{ steps.meta-alpine.outputs.tags }}
platforms: linux/amd64,linux/arm64,linux/arm/v7
- name: Update README on Docker
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
repository: ${{ github.repository }}