Skip to content

Update README.md

Update README.md #13

Workflow file for this run

name: distribute
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
strategy:
fail-fast: false
matrix:
variant: [bookworm-jpg-png, trixie-jpg-png]
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Determine version
run: echo "VERSION=$(git describe --tags --match "v*" --always --abbrev=7)" >> $GITHUB_ENV
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Packages
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push container image
uses: docker/build-push-action@v5
with:
context: .
provenance: false
push: true
platforms: linux/amd64,linux/arm64
file: Dockerfile.${{ matrix.variant }}
cache-to: type=registry,ref=ghcr.io/cyberagentai/libvips:${{ matrix.variant }}-buildcache
cache-from: type=registry,ref=ghcr.io/cyberagentai/libvips:${{ matrix.variant }}-buildcache
tags: |
ghcr.io/cyberagentai/libvips:${{ matrix.variant }}
ghcr.io/cyberagentai/libvips:${{ matrix.variant }}-${{ env.VERSION }}
concurrency:
group: distribute-${{ github.workflow }}-${{ github.sha }}
cancel-in-progress: true