Skip to content

Image: Update dependencies. #528

Image: Update dependencies.

Image: Update dependencies. #528

Workflow file for this run

name: Image
on:
pull_request:
push:
branches:
- main
tags:
- v*
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Log in to registry
uses: docker/login-action@v4.4.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata
id: metadata
uses: docker/metadata-action@v6.2.0
with:
images: ghcr.io/${{ github.repository }}
- name: Set up buildx
uses: docker/setup-buildx-action@v4.2.0
- name: Build image
uses: docker/build-push-action@v7.3.0
with:
platforms: linux/amd64,linux/arm64
tags: ${{ steps.metadata.outputs.tags }}
push: ${{ github.ref_type == 'tag' }}