-
Notifications
You must be signed in to change notification settings - Fork 83
78 lines (64 loc) · 2.2 KB
/
docker-image.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
name: Docker
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
build:
- debian
- alpine
include:
- build: debian
dockerfile: Dockerfile
image: ghcr.io/${{ github.repository }}
- build: alpine
dockerfile: Dockerfile.alpine
image: ghcr.io/${{ github.repository }}-alpine
name: Docker
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
# The following for multi-platform build; disabled here because it takes so long; see #39.
#
# The docker image built for noseyparker releases is done in the
# `release-artifacts.yml` file.
#
# - uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v3
- name: Build Docker image
uses: docker/build-push-action@v5
with:
cache-from: type=gha
cache-to: type=gha,mode=max
context: .
file: ${{ matrix.dockerfile }}
tags: ${{ matrix.image }}:edge
push: false
# For multi-platform builds
# platforms: linux/amd64,linux/arm64
load: true
pull: true
labels: |
org.opencontainers.image.title=${{ github.event.repository.name }}
org.opencontainers.image.description=${{ github.event.repository.description }}
org.opencontainers.image.url=${{ github.event.repository.html_url }}
org.opencontainers.image.source=${{ github.event.repository.clone_url }}
org.opencontainers.image.revision=${{ github.sha }}
org.opencontainers.image.licenses=${{ github.event.repository.license.spdx_id }}
- name: Test the Docker image
run: docker run --rm "${{ matrix.image }}:edge" --version
- name: Authenticate with GitHub Container Registry
if: github.event_name == 'push' && github.ref_name == 'main'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push the image to `edge`
if: github.event_name == 'push' && github.ref_name == 'main'
run: |
docker push "${{ matrix.image }}:edge"