Skip to content

Publish Docker image #9

Publish Docker image

Publish Docker image #9

Workflow file for this run

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_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: wittano/komputer-bot
tags: |
type=semver,pattern={{version}},value=v1.0.0
- name: Build and push Docker image
uses: mr-smithers-excellent/[email protected]
with:
image: wittano/komputer-bot
platform: linux/amd64,linux/arm64,linux/arm/v7
registry: hub.docker.com
addLatest: true
dockerfile: ./Dockerfile
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}