Merge pull request #4 from dlcs/feature/handle_pdf_err #7
Workflow file for this run
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 push pdf-to-alto docker image | |
on: | |
push: | |
branches: [ "main" ] | |
tags: [ "v*" ] | |
workflow_dispatch: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
id: checkout | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
id: docker-setup-buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Docker metadata | |
id: docker-meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: ghcr.io/dlcs/pdf-to-alto | |
tags: | | |
type=ref,event=branch | |
type=ref,event=pr | |
type=sha,enable=true,prefix=,format=long | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
type=semver,pattern={{major}} | |
- name: Login to GitHub Container Registry | |
id: docker-login | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
id: docker-build-push | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
builder: ${{ steps.docker-setup-buildx.outputs.name }} | |
tags: ${{ steps.docker-meta.outputs.tags }} | |
labels: ${{ steps.docker-meta.outputs.labels }} | |
push: true |