Build and Publish to Docker #297
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 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@v3 | |
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@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build Debian Image for Testing | |
uses: docker/build-push-action@v3 | |
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@v3 | |
with: | |
context: . | |
file: Dockerfile-alpine | |
load: true | |
tags: | | |
${{ github.repository }}:alpine | |
- name: Test Alpine Image | |
run: tests/run ${{ github.repository }}:alpine | |
- name: Build & Push Debian Image | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64,linux/arm/v7 | |
push: true | |
tags: | | |
${{ github.repository }}:latest | |
${{ github.repository }}:debian | |
labels: | | |
org.opencontainers.image.source=$GITHUB_SERVER_URL/${{ github.repository }} | |
org.opencontainers.image.revision=$GITHUB_SHA | |
org.opencontainers.image.created=$(date --rfc-3339=seconds) | |
- name: Build & Push Alpine Image | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
file: Dockerfile-alpine | |
platforms: linux/amd64,linux/arm64,linux/arm/v7 | |
push: true | |
tags: | | |
${{ github.repository }}:alpine | |
labels: | | |
org.opencontainers.image.source=$GITHUB_SERVER_URL/${{ github.repository }} | |
org.opencontainers.image.revision=$GITHUB_SHA | |
org.opencontainers.image.created=$(date --rfc-3339=seconds) |