Skip to content
This repository was archived by the owner on Nov 13, 2024. It is now read-only.

Commit 1052edb

Browse files
authored
Fix docker build (#286)
1 parent 59a8a51 commit 1052edb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-push-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Create build args
5252
run: |
5353
export POETRY_INSTALL_ARGS="$(make print-var VAR=POETRY_DEFAULT_EXTRAS)"
54-
echo "POETRY_INSTALL_ARGS=\"$POETRY_INSTALL_ARGS\"" >> $GITHUB_OUTPUT
54+
echo "POETRY_INSTALL_ARGS=$POETRY_INSTALL_ARGS" >> $GITHUB_OUTPUT
5555
id: build-args
5656
- name: Build and push
5757
uses: docker/build-push-action@v5

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ docker-run-dev:
6464
docker run $(CONTAINER_SYSTEM_RUN_ARGS) $(CONTAINER_RUN_ARGS) -it $(REPOSITORY)-dev:$(IMAGE_TAG)
6565

6666
print-var:
67-
@echo $($(VAR))
67+
@echo "$($(VAR))"
6868

6969
help:
7070
@echo "Available targets:"

0 commit comments

Comments
 (0)