Merge pull request #60 from strukturag/ci-docker

CI: Automatically deploy to Docker Hub / GHCR.
This commit is contained in:
Joachim Bauch 2021-12-03 16:54:10 +01:00 committed by GitHub
commit 0d6f63428f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

73
.github/workflows/deploydocker.yml vendored Normal file
View file

@ -0,0 +1,73 @@
name: Deploy to Docker Hub / GHCR
on:
pull_request:
push:
branches:
- master
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v2
- name: Generate Docker metadata
id: meta
uses: docker/metadata-action@v3
with:
images: |
strukturag/pdfdraw
ghcr.io/strukturag/pdfdraw
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha,prefix=
- name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Login to GHCR
if: github.event_name != 'pull_request'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: ./server/
file: ./server/docker/Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}