@@ -2,7 +2,7 @@ name: Build Steps
2
2
3
3
on :
4
4
workflow_call :
5
- inputs :
5
+ github.event. inputs :
6
6
platform :
7
7
required : true
8
8
type : string
18
18
19
19
jobs :
20
20
build :
21
- runs-on : ${{ inputs.platform == 'linux/arm64' && 'macos-latest' || 'ubuntu-latest' }}
21
+ runs-on : ${{ github.event. inputs.platform == 'linux/arm64' && 'macos-latest' || 'ubuntu-latest' }}
22
22
steps :
23
23
-
24
24
name : Prepare Platform Environment
25
25
run : |
26
- echo "PLATFORM_PAIR=${{ inputs.platform//\//- }}" >> $GITHUB_ENV
26
+ echo "PLATFORM_PAIR=${{ github.event. inputs.platform//\//- }}" >> $GITHUB_ENV
27
27
-
28
28
name : Checkout
29
29
uses : actions/checkout@v4
32
32
id : meta
33
33
uses : docker/metadata-action@v5
34
34
with :
35
- images : ${{ inputs.registry_image }}
35
+ images : ${{ github.event. inputs.registry_image }}
36
36
-
37
37
name : Set up QEMU
38
38
uses : docker/setup-qemu-action@v3
@@ -52,12 +52,12 @@ jobs:
52
52
with :
53
53
context : .
54
54
file : ./deployments/Dockerfile
55
- platforms : ${{ inputs.platform }}
55
+ platforms : ${{ github.event. inputs.platform }}
56
56
labels : ${{ steps.meta.outputs.labels }}
57
- outputs : type=image,name=${{ inputs.registry_image }},push-by-digest=true,name-canonical=true,push=true
57
+ outputs : type=image,name=${{ github.event. inputs.registry_image }},push-by-digest=true,name-canonical=true,push=true
58
58
build-args : |
59
- RUNTIME=${{ inputs.runtime }}
60
- BUILDPACK=${{ inputs.buildpack }}
59
+ RUNTIME=${{ github.event. inputs.runtime }}
60
+ BUILDPACK=${{ github.event. inputs.buildpack }}
61
61
-
62
62
name : Export digest
63
63
run : |
0 commit comments