Skip to content

Commit

Permalink
add brackets to conditionals
Browse files Browse the repository at this point in the history
  • Loading branch information
david-leifker committed Aug 2, 2023
1 parent 23b1eb3 commit f2e2d72
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-unified.yml
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ jobs:
datahub-ingestion:
- 'docker/datahub-ingestion/**'
- name: Build and push Base Image
if: steps.filter.outputs.datahub-ingestion-base == 'true'
if: ${{ steps.filter.outputs.datahub-ingestion-base == 'true' }}
uses: ./.github/actions/docker-custom-build-and-push
with:
images: |
Expand All @@ -452,10 +452,10 @@ jobs:
file: ./docker/datahub-ingestion-base/Dockerfile
platforms: linux/amd64,linux/arm64/v8
- name: Build schemas
if: steps.filter.outputs.datahub-ingestion-base == 'true' || steps.filter.outputs.datahub-ingestion-slim == 'true'
if: ${{ steps.filter.outputs.datahub-ingestion-base == 'true' || steps.filter.outputs.datahub-ingestion-slim == 'true' }}
run: ./gradlew :metadata-events:mxe-schemas:build
- name: Build and push Slim Image
if: steps.filter.outputs.datahub-ingestion-base == 'true' || steps.filter.outputs.datahub-ingestion-slim == 'true'
if: ${{ steps.filter.outputs.datahub-ingestion-base == 'true' || steps.filter.outputs.datahub-ingestion-slim == 'true' }}
uses: ./.github/actions/docker-custom-build-and-push
with:
images: |
Expand All @@ -470,7 +470,7 @@ jobs:
file: ./docker/datahub-ingestion-slim/Dockerfile
platforms: linux/amd64,linux/arm64/v8
- name: Build and push Full Image
if: steps.filter.outputs.datahub-ingestion-base == 'true' || steps.filter.outputs.datahub-ingestion-slim == 'true'
if: ${{ steps.filter.outputs.datahub-ingestion-base == 'true' || steps.filter.outputs.datahub-ingestion-slim == 'true' || steps.filter.outputs.datahub-ingestion == 'true' }}
uses: ./.github/actions/docker-custom-build-and-push
with:
images: |
Expand Down

0 comments on commit f2e2d72

Please sign in to comment.