Skip to content

Commit 046087d

Browse files
committed
ci(docker): Fix build-args syntax (docker/build-push-action@v4)
1 parent a31ff2b commit 046087d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/deploy-master.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ jobs:
111111
pull: false # because of the previous "load: true"
112112
push: true
113113
context: ci/docker-emacs-learn-ocaml-client
114-
build-args: "base=ocamlsf/learn-ocaml-client,version=master"
114+
build-args: |
115+
base=ocamlsf/learn-ocaml-client
116+
version=master
115117
tags: "ocamlsf/emacs-learn-ocaml-client:master"
116118
labels: |
117119
org.opencontainers.image.created=${{ steps.prep.outputs.created }}

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,9 @@ jobs:
243243
pull: false # because of the previous "load: true"
244244
push: true
245245
context: ci/docker-emacs-learn-ocaml-client
246-
build-args: "base=ocamlsf/learn-ocaml-client,version=${{ steps.tag.outputs.tag }}"
246+
build-args: |
247+
base=ocamlsf/learn-ocaml-client
248+
version=${{ steps.tag.outputs.tag }}
247249
tags: |
248250
ocamlsf/emacs-learn-ocaml-client:latest
249251
ocamlsf/emacs-learn-ocaml-client:${{ steps.tag.outputs.tag }}

0 commit comments

Comments
 (0)