Skip to content

Commit c2512cf

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

File tree

3 files changed

+150
-87
lines changed

3 files changed

+150
-87
lines changed

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

+60-57
Original file line numberDiff line numberDiff line change
@@ -15,61 +15,64 @@ on:
1515
buildpack:
1616
required: true
1717
type: string
18+
runs_on:
19+
required: true
20+
type: string
1821

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

.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

+16-30
Original file line numberDiff line numberDiff line change
@@ -19,38 +19,24 @@ env:
1919

2020
jobs:
2121
build-amd64:
22-
runs-on: ubuntu-latest
23-
steps:
24-
- uses: actions/checkout@v4
25-
-
26-
name: Set Platform Variable
27-
run: echo "PLATFORM_PAIR=linux-amd64" >> $GITHUB_ENV
28-
-
29-
name: Execute Build Steps
30-
uses: ./.github/actions/build-steps
31-
with:
32-
platform: linux/amd64
33-
registry_image: ${{ env.REGISTRY_IMAGE }}
34-
runtime: ${{ github.event.inputs.runtime }}
35-
buildpack: ${{ github.event.inputs.buildpack }}
36-
secrets: inherit
22+
uses: ./.github/workflows/build-steps.yml
23+
secrets: inherit
24+
with:
25+
platform: linux/amd64
26+
registry_image: ${{ env.REGISTRY_IMAGE }}
27+
runtime: ${{ github.event.inputs.runtime }}
28+
buildpack: ${{ github.event.inputs.buildpack }}
29+
runs_on: ubuntu-latest
3730

3831
build-arm64:
39-
runs-on: macos-latest
40-
steps:
41-
- uses: actions/checkout@v4
42-
-
43-
name: Set Platform Variable
44-
run: echo "PLATFORM_PAIR=linux-arm64" >> $GITHUB_ENV
45-
-
46-
name: Execute Build Steps
47-
uses: ./.github/actions/build-steps
48-
with:
49-
platform: linux/arm64
50-
registry_image: ${{ env.REGISTRY_IMAGE }}
51-
runtime: ${{ github.event.inputs.runtime }}
52-
buildpack: ${{ github.event.inputs.buildpack }}
53-
secrets: inherit
32+
uses: ./.github/workflows/build-steps.yml
33+
secrets: inherit
34+
with:
35+
platform: linux/arm64
36+
registry_image: ${{ env.REGISTRY_IMAGE }}
37+
runtime: ${{ github.event.inputs.runtime }}
38+
buildpack: ${{ github.event.inputs.buildpack }}
39+
runs_on: macos-latest
5440

5541
merge:
5642
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)