Skip to content

Commit 7627227

Browse files
author
CssTechnology
authored
Update main.yml
1 parent dd538f7 commit 7627227

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/main.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,21 @@ jobs:
7272
with:
7373
version: ${{ inputs.docker-buildx-version }}
7474

75+
- name: Build
76+
uses: docker/build-push-action@v6
77+
id: build
78+
with:
79+
context: ${{ inputs.docker-context }}
80+
file: ${{ inputs.docker-dockerfile }}
81+
tags: ${{ steps.docker-meta.outputs.tags }}
82+
labels: ${{ steps.docker-meta.outputs.labels }}
83+
build-args: ${{ inputs.docker-build-args }}
84+
target: ${{ inputs.target }}
85+
# platforms: ${{ inputs.docker-platforms }} # Multi-platform not currently supported with load: true
86+
load: true
87+
cache-from: ${{ inputs.docker-image-cache-from }}
88+
cache-to: ${{ inputs.docker-image-cache-to }}
89+
secrets: ${{ inputs.docker-build-secrets }}
90+
91+
7592

0 commit comments

Comments
 (0)