Skip to content

ci: configure Docker cache #53

ci: configure Docker cache

ci: configure Docker cache #53

Workflow file for this run

name: Build and push Docker image
on:
push:
branches:
- "**"
tags:
- "v*.*.*"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Install hurl
uses: gacts/install-hurl@v1
- name: Run tests
run: cd tests && ./run.sh && cd -
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
uses: zazuko/action-docker-meta@main
id: docker_meta
with:
images: ghcr.io/zazuko/fuseki-geosparql
- name: Build and push Docker images
id: docker_build
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
platforms: |
linux/amd64
linux/arm64/v8
cache-from: type=gha
cache-to: type=gha,mode=max