mirror of
https://github.com/nkanaev/yarr.git
synced 2025-05-24 00:33:14 +00:00
Commit updates the build-docker workflow to add suport for ARM64 images. Testing ======= Locally, I attempted to build an image from the provided Dockerfile in an ARM64 host using: ```sh podman build -t yarr:latest -f etc/dockerfile . ``` The `platforms` input is provided as documented in [1]. 1 - https://github.com/docker/build-push-action?tab=readme-ov-file#inputs Signed-off-by: Jason Rogena <null+git@rogena.me>
42 lines
1023 B
YAML
42 lines
1023 B
YAML
name: Publish Docker Image
|
|
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
IMAGE_NAME: nkanaev/yarr
|
|
|
|
jobs:
|
|
build-and-push-image:
|
|
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@v3
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Extract Docker metadata
|
|
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@v6
|
|
with:
|
|
context: .
|
|
file: ./etc/dockerfile
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
platforms: linux/amd64,linux/arm64
|