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

Commit

Permalink
Fix docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
izellevy committed Feb 11, 2024
1 parent 59a8a51 commit cd84a49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-push-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Create build args
run: |
export POETRY_INSTALL_ARGS="$(make print-var VAR=POETRY_DEFAULT_EXTRAS)"
echo "POETRY_INSTALL_ARGS=\"$POETRY_INSTALL_ARGS\"" >> $GITHUB_OUTPUT
echo "POETRY_INSTALL_ARGS=$POETRY_INSTALL_ARGS" >> $GITHUB_OUTPUT
id: build-args
- name: Build and push
uses: docker/build-push-action@v5
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ docker-run-dev:
docker run $(CONTAINER_SYSTEM_RUN_ARGS) $(CONTAINER_RUN_ARGS) -it $(REPOSITORY)-dev:$(IMAGE_TAG)

print-var:
@echo $($(VAR))
@echo "$($(VAR))"

help:
@echo "Available targets:"
Expand Down

0 comments on commit cd84a49

Please sign in to comment.