Skip to content

Commit 6c1c9b6

Browse files
committed
fix: use reusable workflow instead of composite action
Signed-off-by: Yukai Huang <[email protected]>
1 parent 455861e commit 6c1c9b6

File tree

3 files changed

+76
-77
lines changed

3 files changed

+76
-77
lines changed

.github/actions/build-steps/action.yml

-75
This file was deleted.

.github/workflows/build-steps.yml

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
name: Build Steps
2+
3+
on:
4+
workflow_call:
5+
inputs:
6+
platform:
7+
required: true
8+
type: string
9+
registry_image:
10+
required: true
11+
type: string
12+
runtime:
13+
required: true
14+
type: string
15+
buildpack:
16+
required: true
17+
type: string
18+
19+
jobs:
20+
build:
21+
steps:
22+
-
23+
name: Prepare Platform Environment
24+
run: |
25+
platform=${{ inputs.platform }}
26+
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
27+
-
28+
name: Checkout
29+
uses: actions/checkout@v4
30+
-
31+
name: Docker meta
32+
id: meta
33+
uses: docker/metadata-action@v5
34+
with:
35+
images: ${{ inputs.registry_image }}
36+
-
37+
name: Set up QEMU
38+
uses: docker/setup-qemu-action@v3
39+
-
40+
name: Set up Docker Buildx
41+
uses: docker/setup-buildx-action@v3
42+
-
43+
name: Login to Docker Hub
44+
uses: docker/login-action@v3
45+
with:
46+
username: ${{ secrets.DOCKERHUB_USERNAME }}
47+
password: ${{ secrets.DOCKERHUB_TOKEN }}
48+
-
49+
name: Build and push by digest
50+
id: build
51+
uses: docker/build-push-action@v5
52+
with:
53+
context: .
54+
file: ./deployments/Dockerfile
55+
platforms: ${{ inputs.platform }}
56+
labels: ${{ steps.meta.outputs.labels }}
57+
outputs: type=image,name=${{ inputs.registry_image }},push-by-digest=true,name-canonical=true,push=true
58+
build-args: |
59+
RUNTIME=${{ inputs.runtime }}
60+
BUILDPACK=${{ inputs.buildpack }}
61+
-
62+
name: Export digest
63+
run: |
64+
mkdir -p /tmp/digests
65+
digest="${{ steps.build.outputs.digest }}"
66+
touch "/tmp/digests/${digest#sha256:}"
67+
-
68+
name: Upload digest
69+
uses: actions/upload-artifact@v4
70+
with:
71+
name: digests-${{ env.PLATFORM_PAIR }}
72+
path: /tmp/digests/*
73+
if-no-files-found: error
74+
retention-days: 1

.github/workflows/push-image.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: echo "PLATFORM_PAIR=linux-amd64" >> $GITHUB_ENV
2828
-
2929
name: Execute Build Steps
30-
uses: ./.github/actions/build-steps
30+
uses: ./.github/workflows/build-steps.yml
3131
with:
3232
platform: linux/amd64
3333
registry_image: ${{ env.REGISTRY_IMAGE }}
@@ -44,7 +44,7 @@ jobs:
4444
run: echo "PLATFORM_PAIR=linux-arm64" >> $GITHUB_ENV
4545
-
4646
name: Execute Build Steps
47-
uses: ./.github/actions/build-steps
47+
uses: ./.github/workflows/build-steps.yml
4848
with:
4949
platform: linux/arm64
5050
registry_image: ${{ env.REGISTRY_IMAGE }}

0 commit comments

Comments
 (0)