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 8, 2024
1 parent 84351dc commit da30923
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build-push-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ jobs:
type=raw,value=${{inputs.version}},enable=${{ github.event_name != 'push' }}
- name: Create build args
run: |
echo "POETRY_INSTALL_ARGS=$(make print-var VAR=POETRY_DEFAULT_EXTRAS)" >> $GITHUB_OUTPUT
export POETRY_INSTALL_ARGS="$(make print-var VAR=POETRY_DEFAULT_EXTRAS)"
echo "POETRY_INSTALL_ARGS=\"$POETRY_INSTALL_ARGS\"" >> $GITHUB_OUTPUT
id: build-args
- name: Build and push
uses: docker/build-push-action@v5
Expand Down

0 comments on commit da30923

Please sign in to comment.