Skip to content

Publish Docker Image #37

Publish Docker Image

Publish Docker Image #37

name: Publish Docker Image
on:
release:
types: [published]
workflow_dispatch:
jobs:
push_to_registries:
name: Push Docker image to GHCR & Docker Hub
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
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_TOKEN }}
- name: Log in to the GitHub Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Lowercase the repo name
run: |
echo "REPO_L=${GITHUB_REPOSITORY@L}" >> "${GITHUB_ENV}"
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: |
edm115/unzip-bot
ghcr.io/${{ github.repository }}
- name: Build and push Docker images
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }},edm115/unzip-bot:latest,ghcr.io/${{ env.REPO_L }}:latest
labels: ${{ steps.meta.outputs.labels }}