Skip to content

Push docker image to dockerhub, only on push events #21

Push docker image to dockerhub, only on push events

Push docker image to dockerhub, only on push events #21

Workflow file for this run

name: Create and publish a Docker image
on:
push:
branches: ["main"]
jobs:
build-and-push-image:
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.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: openhpi/transpipe
tags: |
type=raw,value=latest
type=raw,value={{sha}}
type=ref,event=tag
type=ref,event=pr
- 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 }}