Skip to content

Commit 7f08832

Browse files
committed
try again
1 parent ff66095 commit 7f08832

File tree

2 files changed

+104
-47
lines changed

2 files changed

+104
-47
lines changed

.github/workflows/docker-database.yml

+42-11
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,25 @@ on:
44
workflow_dispatch:
55
release:
66
types: [published]
7+
pull_request:
8+
types: [synchronize, labeled, unlabeled]
79

8-
concurrency:
10+
concurrency:
911
group: ${{ github.ref }}-${{ github.workflow }}
1012
cancel-in-progress: true
1113

1214
env:
1315
REGISTRY_IMAGE: lobehub/lobe-chat-database
16+
PR_TAG_PREFIX: pr-
1417

1518
jobs:
1619
build:
20+
# 添加 PR label 触发条件
21+
if: |
22+
(github.event_name == 'pull_request' &&
23+
contains(github.event.pull_request.labels.*.name, 'Build Docker')) ||
24+
github.event_name != 'pull_request'
25+
1726
strategy:
1827
matrix:
1928
include:
@@ -27,8 +36,8 @@ jobs:
2736
- name: Prepare
2837
run: |
2938
platform=${{ matrix.platform }}
30-
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
31-
39+
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
40+
3241
- name: Checkout base
3342
uses: actions/checkout@v4
3443
with:
@@ -37,14 +46,26 @@ jobs:
3746
- name: Set up Docker Buildx
3847
uses: docker/setup-buildx-action@v3
3948

49+
# 为 PR 生成特殊的 tag
50+
- name: Generate PR metadata
51+
if: github.event_name == 'pull_request'
52+
id: pr_meta
53+
run: |
54+
branch_name="${{ github.head_ref }}"
55+
sanitized_branch=$(echo "${branch_name}" | sed -E 's/[^a-zA-Z0-9_.-]+/-/g')
56+
echo "pr_tag=${sanitized_branch}-$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
57+
4058
- name: Docker meta
4159
id: meta
4260
uses: docker/metadata-action@v5
4361
with:
4462
images: ${{ env.REGISTRY_IMAGE }}
4563
tags: |
46-
type=semver,pattern={{version}}
47-
type=raw,value=latest,enable={{is_default_branch}}
64+
# PR 构建使用特殊的 tag
65+
type=raw,value=${{ env.PR_TAG_PREFIX }}${{ steps.pr_meta.outputs.pr_tag }},enable=${{ github.event_name == 'pull_request' }}
66+
# release 构建使用版本号
67+
type=semver,pattern={{version}},enable=${{ github.event_name != 'pull_request' }}
68+
type=raw,value=latest,enable=${{ github.event_name != 'pull_request' }}
4869
4970
- name: Docker login
5071
uses: docker/login-action@v3
@@ -63,7 +84,7 @@ jobs:
6384
with:
6485
platforms: ${{ matrix.platform }}
6586
context: .
66-
file: ./Dockerfile.database # 指定使用 Dockerfile.database 文件
87+
file: ./Dockerfile.database
6788
labels: ${{ steps.meta.outputs.labels }}
6889
build-args: |
6990
SHA=${{ steps.vars.outputs.sha_short }}
@@ -99,14 +120,24 @@ jobs:
99120
- name: Set up Docker Buildx
100121
uses: docker/setup-buildx-action@v3
101122

123+
# 为 merge job 添加 PR metadata 生成
124+
- name: Generate PR metadata
125+
if: github.event_name == 'pull_request'
126+
id: pr_meta
127+
run: |
128+
branch_name="${{ github.head_ref }}"
129+
sanitized_branch=$(echo "${branch_name}" | sed -E 's/[^a-zA-Z0-9_.-]+/-/g')
130+
echo "pr_tag=${sanitized_branch}-$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
131+
102132
- name: Docker meta
103133
id: meta
104134
uses: docker/metadata-action@v5
105135
with:
106136
images: ${{ env.REGISTRY_IMAGE }}
107137
tags: |
108-
type=semver,pattern={{version}}
109-
type=raw,value=latest,enable={{is_default_branch}}
138+
type=raw,value=${{ env.PR_TAG_PREFIX }}${{ steps.pr_meta.outputs.pr_tag }},enable=${{ github.event_name == 'pull_request' }}
139+
type=semver,pattern={{version}},enable=${{ github.event_name != 'pull_request' }}
140+
type=raw,value=latest,enable=${{ github.event_name != 'pull_request' }}
110141
111142
- name: Docker login
112143
uses: docker/login-action@v3
@@ -118,8 +149,8 @@ jobs:
118149
working-directory: /tmp/digests
119150
run: |
120151
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
121-
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
122-
152+
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
153+
123154
- name: Inspect image
124155
run: |
125-
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }}
156+
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }}

.github/workflows/docker.yml

+62-36
Original file line numberDiff line numberDiff line change
@@ -4,96 +4,122 @@ on:
44
workflow_dispatch:
55
release:
66
types: [published]
7-
pull_request:
8-
types: [synchronize, labeled, unlabeled]
7+
8+
concurrency:
9+
group: ${{ github.ref }}-${{ github.workflow }}
10+
cancel-in-progress: true
911

1012
env:
1113
REGISTRY_IMAGE: lobehub/lobe-chat
12-
PR_TAG_PREFIX: pr-
1314

1415
jobs:
1516
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-
2117
strategy:
2218
matrix:
2319
include:
2420
- platform: linux/amd64
2521
os: ubuntu-latest
2622
- platform: linux/arm64
2723
os: ubuntu-24.04-arm
28-
2924
runs-on: ${{ matrix.os }}
25+
name: Build ${{ matrix.platform }} Image
3026
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
3233
uses: actions/checkout@v4
3334
with:
3435
fetch-depth: 0
3536

36-
- name: Setup buildx
37+
- name: Set up Docker Buildx
3738
uses: docker/setup-buildx-action@v3
3839

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-
4740
- name: Docker meta
4841
id: meta
4942
uses: docker/metadata-action@v5
5043
with:
5144
images: ${{ env.REGISTRY_IMAGE }}
5245
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}}
5648
5749
- name: Docker login
5850
uses: docker/login-action@v3
5951
with:
6052
username: ${{ secrets.DOCKER_REGISTRY_USER }}
6153
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
6254

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
6462
uses: docker/build-push-action@v5
6563
with:
6664
platforms: ${{ matrix.platform }}
6765
context: .
6866
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
7171

72-
- name: Export manifest digest
72+
- name: Export digest
7373
run: |
74+
rm -rf /tmp/digests
7475
mkdir -p /tmp/digests
7576
digest="${{ steps.build.outputs.digest }}"
76-
echo "${digest#sha256:}" >> /tmp/digests/manifest.txt
77+
touch "/tmp/digests/${digest#sha256:}"
7778
78-
- name: Upload manifest digest
79+
- name: Upload artifact
7980
uses: actions/upload-artifact@v4
8081
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
8386

8487
merge:
88+
name: Merge
8589
needs: build
8690
runs-on: ubuntu-latest
8791
steps:
8892
- name: Download digests
8993
uses: actions/download-artifact@v4
9094
with:
9195
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
93101

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
95124
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

Comments
 (0)