Skip to content

Workflow file for this run

name: πŸ—οΈπŸ“€ Build and publish 🐳 images
on:
push:
env:
GHCR_REGISTRY: ghcr.io
DOCKERHUB_REGISTRY: docker.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
name: πŸ—οΈπŸ“€ Build and push 🐳 image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository πŸ‘€πŸ“¦
uses: actions/checkout@v3
- name: Login to GitHub Container Registry πŸ”‘πŸ“¦
uses: docker/[email protected]
with:
registry: ${{ env.GHCR_REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: πŸ”‘πŸ“¦ Login to Docker Hub
uses: docker/[email protected]
with:
registry: ${{ env.DOCKERHUB_REGISTRY }}
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract metadata (🏷️, 🏷️) for 🐳
id: meta
uses: docker/[email protected]
with:
flavor: |
latest=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
images: |
${{ env.GHCR_REGISTRY }}/${{ env.IMAGE_NAME }}
${{ env.DOCKERHUB_REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest,priority=100,enable=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
type=raw,value=${{ env.RELEASE_VERSION }},priority=500,enable=${{ env.RELEASE_VERSION != '' }}
type=sha,enable=true,prefix=main-,suffix=,format=short,priority=200,enable=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
type=raw,prefix={{branch}}-,value=,priority=300,enable=${{ github.ref != format('refs/heads/{0}', github.event.repository.default_branch) }}
type=sha,enable=true,prefix={{branch}}-,suffix=,format=short,priority=400,enable=${{ github.ref != format('refs/heads/{0}', github.event.repository.default_branch) }}
- name: πŸ—οΈπŸ“€ Build and push 🐳 image
uses: docker/[email protected]
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}