We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd538f7 commit 7627227Copy full SHA for 7627227
.github/workflows/main.yml
@@ -72,4 +72,21 @@ jobs:
72
with:
73
version: ${{ inputs.docker-buildx-version }}
74
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
92
0 commit comments