2021-10-03 00:37:17 +02:00
|
|
|
name: Build & Push Docker Image
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
# Publish `master` as Docker `latest` image.
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- dev
|
|
|
|
|
|
|
|
# Publish `v1.2.3` tags as releases.
|
|
|
|
tags:
|
|
|
|
- v*
|
|
|
|
|
|
|
|
# Run tests for any PRs.
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
env:
|
|
|
|
# Use docker.io for Docker Hub if empty
|
2021-10-17 14:29:52 +02:00
|
|
|
GITHUB_REGISTRY: ghcr.io
|
|
|
|
DOCKER_REGISTRY: docker.io
|
2021-10-03 00:37:17 +02:00
|
|
|
# github.repository as <account>/<repo>
|
|
|
|
IMAGE_NAME: ${{ github.repository }}
|
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
# Run tests.
|
|
|
|
test:
|
2021-10-17 14:29:52 +02:00
|
|
|
name: Test
|
2021-10-03 00:37:17 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: |
|
|
|
|
if [ -f docker-compose.test.yml ]; then
|
|
|
|
docker-compose --file docker-compose.test.yml build
|
|
|
|
docker-compose --file docker-compose.test.yml run sut
|
|
|
|
else
|
|
|
|
docker build . --file Dockerfile
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Push image to GitHub Packages.
|
2021-10-17 14:29:52 +02:00
|
|
|
push-to-github-packages:
|
2021-10-03 00:37:17 +02:00
|
|
|
|
|
|
|
# Ensure test job passes before pushing image.
|
|
|
|
needs: test
|
|
|
|
|
2021-10-17 14:29:52 +02:00
|
|
|
name: Build & Push to GitHub Registry
|
2021-10-03 00:37:17 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
|
|
|
|
# Login against a Docker registry except on PR
|
|
|
|
# https://github.com/docker/login-action
|
2021-10-17 14:29:52 +02:00
|
|
|
- name: Log into registry ${{ env.GITHUB_REGISTRY }}
|
2021-10-03 00:37:17 +02:00
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
2021-10-17 14:29:52 +02:00
|
|
|
registry: ${{ env.GITHUB_REGISTRY }}
|
2021-10-03 00:37:17 +02:00
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
# Extract metadata (tags, labels) for Docker
|
|
|
|
# https://github.com/docker/metadata-action
|
|
|
|
- name: Extract Docker metadata
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v3
|
|
|
|
with:
|
2021-10-17 14:29:52 +02:00
|
|
|
images: ${{ env.GITHUB_REGISTRY }}/${{ env.IMAGE_NAME }}
|
2021-10-17 13:10:37 +02:00
|
|
|
tags: |
|
|
|
|
type=ref,event=branch
|
|
|
|
type=semver,pattern={{version}}
|
|
|
|
type=semver,pattern={{major}}
|
|
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
|
|
type=semver,pattern={{major}}.{{minor}}.{{patch}}
|
2021-10-03 00:37:17 +02:00
|
|
|
|
|
|
|
# Build and push Docker image with Buildx (don't push on PR)
|
|
|
|
# https://github.com/docker/build-push-action
|
|
|
|
- name: Build and push Docker image
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
context: .
|
2021-10-31 02:54:05 +01:00
|
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
2021-10-03 00:37:17 +02:00
|
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2021-10-17 14:29:52 +02:00
|
|
|
|
|
|
|
# Push image to Docker Hub.
|
|
|
|
push-to-docker-hub:
|
|
|
|
|
|
|
|
# Ensure test job passes before pushing image.
|
|
|
|
needs: test
|
|
|
|
|
|
|
|
name: Build & Push to Docker Hub
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
|
|
|
|
# Login against a Docker registry except on PR
|
|
|
|
# https://github.com/docker/login-action
|
|
|
|
- name: Log into registry ${{ env.DOCKER_REGISTRY }}
|
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
registry: ${{ env.DOCKER_REGISTRY }}
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
|
|
|
|
# Extract metadata (tags, labels) for Docker
|
|
|
|
# https://github.com/docker/metadata-action
|
|
|
|
- name: Extract Docker metadata
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v3
|
|
|
|
with:
|
|
|
|
images: ${{ env.IMAGE_NAME }}
|
|
|
|
tags: |
|
|
|
|
type=ref,event=branch
|
|
|
|
type=semver,pattern={{version}}
|
|
|
|
type=semver,pattern={{major}}
|
|
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
|
|
type=semver,pattern={{major}}.{{minor}}.{{patch}}
|
|
|
|
|
|
|
|
# Build and push Docker image with Buildx (don't push on PR)
|
|
|
|
# https://github.com/docker/build-push-action
|
|
|
|
- name: Build and push Docker image
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
context: .
|
2021-10-31 02:54:05 +01:00
|
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
2021-10-17 14:29:52 +02:00
|
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|