Added github workflow for docker build and publish

This commit is contained in:
Mathias Vanden Auweele
2024-11-18 20:44:14 +01:00
committed by Sina Atalay
parent 07aebeffdd
commit 1a9c459c9e

36
.github/workflows/docker-image.yaml vendored Normal file
View File

@@ -0,0 +1,36 @@
name: Publish Docker image
on:
release:
types: [published]
jobs:
push_to_registry:
name: Release docker image
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with:
registry: docker.io
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ vars.DOCKERHUB_REPO }}
- name: Build and push Docker image
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
with:
context: .
file: ./Dockerfile
push: true
build-args: GITHUB_REF=${{ github.ref_name }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}