4
4
workflow_dispatch :
5
5
release :
6
6
types : [published]
7
- pull_request :
8
- types : [synchronize, labeled, unlabeled]
7
+
8
+ concurrency :
9
+ group : ${{ github.ref }}-${{ github.workflow }}
10
+ cancel-in-progress : true
9
11
10
12
env :
11
13
REGISTRY_IMAGE : lobehub/lobe-chat
12
- PR_TAG_PREFIX : pr-
13
14
14
15
jobs :
15
16
build :
16
- if : |
17
- (github.event_name == 'pull_request' &&
18
- contains(github.event.pull_request.labels.*.name, 'Build Docker')) ||
19
- github.event_name != 'pull_request'
20
-
21
17
strategy :
22
18
matrix :
23
19
include :
24
20
- platform : linux/amd64
25
21
os : ubuntu-latest
26
22
- platform : linux/arm64
27
23
os : ubuntu-24.04-arm
28
-
29
24
runs-on : ${{ matrix.os }}
25
+ name : Build ${{ matrix.platform }} Image
30
26
steps :
31
- - name : Checkout code
27
+ - name : Prepare
28
+ run : |
29
+ platform=${{ matrix.platform }}
30
+ echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
31
+
32
+ - name : Checkout base
32
33
uses : actions/checkout@v4
33
34
with :
34
35
fetch-depth : 0
35
36
36
- - name : Setup buildx
37
+ - name : Set up Docker Buildx
37
38
uses : docker/setup-buildx-action@v3
38
39
39
- - name : Generate PR metadata
40
- if : github.event_name == 'pull_request'
41
- id : pr_meta
42
- run : |
43
- branch_name="${{ github.head_ref }}"
44
- sanitized_branch=$(echo "${branch_name}" | sed -E 's/[^a-zA-Z0-9_.-]+/-/g')
45
- echo "pr_tag=${sanitized_branch}-$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
46
-
47
40
- name : Docker meta
48
41
id : meta
49
42
uses : docker/metadata-action@v5
50
43
with :
51
44
images : ${{ env.REGISTRY_IMAGE }}
52
45
tags : |
53
- type=raw,value=${{ env.PR_TAG_PREFIX }}${{ steps.pr_meta.outputs.pr_tag }},enable=${{ github.event_name == 'pull_request' }}
54
- type=semver,pattern={{version}},enable=${{ github.event_name != 'pull_request' }}
55
- type=raw,value=latest,enable=${{ github.event_name != 'pull_request' }}
46
+ type=semver,pattern={{version}}
47
+ type=raw,value=latest,enable={{is_default_branch}}
56
48
57
49
- name : Docker login
58
50
uses : docker/login-action@v3
59
51
with :
60
52
username : ${{ secrets.DOCKER_REGISTRY_USER }}
61
53
password : ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
62
54
63
- - name : Build and push
55
+ - name : Get commit SHA
56
+ if : github.ref == 'refs/heads/master'
57
+ id : vars
58
+ run : echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
59
+
60
+ - name : Build and export
61
+ id : build
64
62
uses : docker/build-push-action@v5
65
63
with :
66
64
platforms : ${{ matrix.platform }}
67
65
context : .
68
66
file : ./Dockerfile
69
- tags : ${{ steps.meta.outputs.tags }}
70
- push : true
67
+ labels : ${{ steps.meta.outputs.labels }}
68
+ build-args : |
69
+ SHA=${{ steps.vars.outputs.sha_short }}
70
+ outputs : type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
71
71
72
- - name : Export manifest digest
72
+ - name : Export digest
73
73
run : |
74
+ rm -rf /tmp/digests
74
75
mkdir -p /tmp/digests
75
76
digest="${{ steps.build.outputs.digest }}"
76
- echo " ${digest#sha256:}" >> /tmp/digests/manifest.txt
77
+ touch "/tmp/digests/ ${digest#sha256:}"
77
78
78
- - name : Upload manifest digest
79
+ - name : Upload artifact
79
80
uses : actions/upload-artifact@v4
80
81
with :
81
- name : platform-digests
82
- path : /tmp/digests/manifest.txt
82
+ name : digest-${{ env.PLATFORM_PAIR }}
83
+ path : /tmp/digests/*
84
+ if-no-files-found : error
85
+ retention-days : 1
83
86
84
87
merge :
88
+ name : Merge
85
89
needs : build
86
90
runs-on : ubuntu-latest
87
91
steps :
88
92
- name : Download digests
89
93
uses : actions/download-artifact@v4
90
94
with :
91
95
path : /tmp/digests
92
- pattern : platform-digests
96
+ pattern : digest-*
97
+ merge-multiple : true
98
+
99
+ - name : Set up Docker Buildx
100
+ uses : docker/setup-buildx-action@v3
93
101
94
- - name : Merge manifests
102
+ - name : Docker meta
103
+ id : meta
104
+ uses : docker/metadata-action@v5
105
+ with :
106
+ images : ${{ env.REGISTRY_IMAGE }}
107
+ tags : |
108
+ type=semver,pattern={{version}}
109
+ type=raw,value=latest,enable={{is_default_branch}}
110
+
111
+ - name : Docker login
112
+ uses : docker/login-action@v3
113
+ with :
114
+ username : ${{ secrets.DOCKER_REGISTRY_USER }}
115
+ password : ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
116
+
117
+ - name : Create manifest list and push
118
+ working-directory : /tmp/digests
119
+ run : |
120
+ docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
121
+ $(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
122
+
123
+ - name : Inspect image
95
124
run : |
96
- DIGESTS=$(cat /tmp/digests/**/manifest.txt | tr '\n' ' ')
97
- docker buildx imagetools create \
98
- -t ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.tags }} \
99
- $(echo "$DIGESTS" | sed "s| | ${{ env.REGISTRY_IMAGE }}@sha256:|g")
125
+ docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }}
0 commit comments