Skip to content

Commit

Permalink
ci: test build of Docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
ludovicm67 committed Jan 30, 2024
1 parent 784d642 commit c0d4210
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Test Docker build

on:
push:
branches:
- "**"

jobs:
docker:
runs-on: ubuntu-latest

env:
DOCKER_IMAGE: docker.io/zazukoians/node-java-jena

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v5
with:
images: "${{ env.DOCKER_IMAGE }}"
tags: |
type=ref,event=branch
type=semver,prefix=v,pattern={{version}}
type=semver,prefix=v,pattern={{major}}.{{minor}}
type=semver,prefix=v,pattern={{major}}
type=sha
- name: Build and push Docker image
id: docker_build
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
# We don't push the image ; we just want to check if we are able to build it
push: false
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max

0 comments on commit c0d4210

Please sign in to comment.