Skip to content

Commit

Permalink
ci: fix docker build parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgarel committed Jun 5, 2024
1 parent 0dfcd66 commit 393e672
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/container-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:

steps:
- name: variables for service
if: matrix.env == 'search_service_image'
if: matrix.image_name == 'search_service_image'
run: |
echo "BUILD_CONTEXT=." >> $GITHUB_ENV
# Use runtime target, so that dev dependencies are not included
echo "BUILD_TARGET=runtime" >> $GITHUB_ENV
echo "BUILD_FILE=Dockerfile" >> $GITHUB_ENV
- name: variables for front
if: matrix.env == 'search_front_image'
if: matrix.image_name == 'search_front_image'
run: |
echo "BUILD_CONTEXT=frontend" >> $GITHUB_ENV
echo "BUILD_TARGET=frontend" >> $GITHUB_ENV
Expand Down

0 comments on commit 393e672

Please sign in to comment.