-
Notifications
You must be signed in to change notification settings - Fork 1
83 lines (73 loc) · 2.56 KB
/
build.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Build Docker Container
on:
schedule:
- cron: '0 0 * * 1'
push:
branches: ['*']
# - main
env:
REGISTRY: ghcr.io
BUILD_PLATFORMS: linux/amd64,linux/arm64
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# Ref: https://github.com/Zenika/alpine-chrome
chromium_version:
- 'latest'
- '89'
build_variant:
- ''
- 'with-chromedriver'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to the Container Registry
uses: docker/login-action@v3
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 }}
tags: |
type=raw,value=${{ matrix.chromium_version }}
- name: Determine base image tag
id: container-base
run: |
#
# Setup base image tag as follows:
# - If the chromium_version is set to "latest" and build_variant is empty: use "latest"
# - If the chromium_version is set to "latest" and build_variant is specified: use build_variant
# - Otherwise: concatenate chromium_version and build_variant
#
# Ref: https://github.com/Zenika/alpine-chrome for image naming convention
#
if [[ "${{ matrix.chromium_version }}" == "latest" && "${{ matrix.build_variant }}" != "" ]]; then
build_tag="${{ matrix.build_variant }}"
elif [[ "${{ matrix.build_variant }}" == "" ]]; then
build_tag="${{ matrix.chromium_version }}"
else
build_tag="${{ matrix.chromium_version }}-${{ matrix.build_variant }}"
fi
echo "tag=${build_tag}" >> $GITHUB_OUTPUT
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
build-args: |
BASE_IMAGE_TAG=${{ steps.container-base.outputs.tag }}
platforms: ${{ env.BUILD_PLATFORMS }}
push: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
tags: ${{ steps.meta.outputs.tags }}
cache-from: type=gha
cache-to: type=gha,mode=max