File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 37
37
required : false
38
38
type : string
39
39
default : " ./"
40
+ dockerfile_path :
41
+ required : false
42
+ type : string
43
+ default : " ./Dockerfile"
40
44
image_tag_metadata :
41
45
required : false
42
46
type : string
98
102
gar_name : ${{ inputs.gar_name }}
99
103
project_id : ${{ inputs.project_id }}
100
104
image_build_context : ${{ inputs.image_build_context }}
105
+ dockerfile_path : ${{ inputs.dockerfile_path }}
101
106
image_tag_metadata : ${{ inputs.image_tag_metadata }}
102
107
should_tag_ghcr : ${{ inputs.should_tag_ghcr }}
103
108
should_tag_latest : ${{ inputs.should_tag_latest }}
Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ these inputs.
25
25
| ` workload_identity_pool_project_number ` | false | string | GCP workload identity pool project number. (default: ` ${{ vars.GCPV2_WORKLOAD_IDENTITY_POOL_PROJECT_NUMBER }} ` ) |
26
26
| ` prebuild_script ` | false | string | Shell script (either inline or path to script) to run before building the image. (default: * see below)* |
27
27
| ` postbuild_script ` | false | string | Shell script (either inline or path to script) to run after building the image. |
28
- | ` image_build_context ` | false | string | Build context path. (default: ` "./" ` ) |
28
+ | ` image_build_context ` | false | string | Build context path. Default value is relative to the repository root. (default: ` "./" ` ) |
29
+ | ` dockerfile_path ` | false | string | Path to Dockerfile. Default value is relative to the repository root. (default: ` "./Dockerfile" ` ) |
29
30
| ` image_tag_metadata ` | false | string | Additional metadata for image tagging. |
30
31
| ` should_tag_ghcr ` | false | boolean | Whether to also tag and push the image to GHCR. (default: ` false ` ) |
31
32
| ` should_tag_latest ` | false | boolean | Whether to tag the image as ` latest ` . (default: ` false ` ) |
You can’t perform that action at this time.
0 commit comments