Skip to content

The Claim!

The Claim! #8

name: Publish Docker image
on:
release:
types: [published]
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_DZD_USERNAME }}
password: ${{ secrets.DOCKERHUB_DZD_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: dzdde/${{ github.event.repository.name }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKERHUB_DZD_USERNAME }}
password: ${{ secrets.DOCKERHUB_DZD_PASSWORD }}
repository: dzdde/${{ github.event.repository.name }}
short-description: "A container image to host a REDCap instance with a focus in automated deployments."
enable-url-completion: true
#readme-filepath: "MedLog/backend/README.md"