-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (60 loc) · 1.78 KB
/
distribute.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: distribute
on:
push:
branches:
- main
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-22.04
permissions:
contents: write
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pipe-cd/[email protected]
with:
release_file: "RELEASE"
token: ${{ secrets.GITHUB_TOKEN }}
build:
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
needs: release
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-buildcache:${{ matrix.variant }}
cache-from: type=registry,ref=ghcr.io/cyberagentai/libvips-buildcache:${{ matrix.variant }}
tags: |
ghcr.io/cyberagentai/libvips:${{ matrix.variant }}-${{ env.VERSION }}
concurrency:
group: distribute-${{ github.workflow }}-${{ github.sha }}
cancel-in-progress: true