2021-06-09 13:14:45 +02:00
|
|
|
name: docker-ci
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
2021-06-09 14:21:06 +02:00
|
|
|
release:
|
|
|
|
types: [published]
|
2021-06-09 13:14:45 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
docker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-06-09 15:02:05 +02:00
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
-
|
|
|
|
name: Find Git Tag
|
|
|
|
id: tagger
|
2021-06-09 16:23:50 +02:00
|
|
|
uses: jimschubert/query-tag-action@v2
|
2021-06-09 15:02:05 +02:00
|
|
|
with:
|
|
|
|
include: 'v*'
|
|
|
|
exclude: '*-rc*'
|
2021-06-09 16:33:45 +02:00
|
|
|
commit-ish: 'HEAD'
|
2021-06-09 15:02:05 +02:00
|
|
|
skip-unshallow: 'true'
|
2021-06-09 16:23:50 +02:00
|
|
|
abbrev: 7
|
2021-06-09 15:02:05 +02:00
|
|
|
-
|
|
|
|
name: Determine image tag type
|
2021-06-09 14:21:06 +02:00
|
|
|
uses: haya14busa/action-cond@v1
|
|
|
|
id: imgtag
|
|
|
|
with:
|
|
|
|
cond: ${{ github.event_name == 'release' }}
|
2021-06-09 17:46:03 +02:00
|
|
|
if_true: ${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }}:${{ github.event.release.tag_name }},${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }}:latest
|
2021-06-09 17:30:54 +02:00
|
|
|
if_false: ${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }}:latest
|
2021-06-09 13:14:45 +02:00
|
|
|
-
|
|
|
|
name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
-
|
|
|
|
name: Login to DockerHub
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
-
|
|
|
|
name: Build and push
|
|
|
|
id: docker_build
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
2021-06-09 16:32:46 +02:00
|
|
|
context: .
|
2021-06-09 13:14:45 +02:00
|
|
|
platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7
|
|
|
|
push: true
|
2021-06-09 17:30:54 +02:00
|
|
|
tags: ${{ steps.imgtag.outputs.value }}
|
2021-06-09 15:03:27 +02:00
|
|
|
build-args: 'GIT_DESC=${{steps.tagger.outputs.tag}}'
|