Skip to content

Bump docker/metadata-action from 4 to 5 in /.github/workflows #213

Bump docker/metadata-action from 4 to 5 in /.github/workflows

Bump docker/metadata-action from 4 to 5 in /.github/workflows #213

Workflow file for this run

name: Publish Docker image
on:
workflow_dispatch:
push:
branches: ['master']
tags: '[0-9]+\.[0-9]+\.[0-9]+*'
pull_request_target:
branches: ['master']
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=registry,ref=ghcr.io/konradhoeffner/rickview:master
cache-to: type=inline