Skip to content

Commit

Permalink
fix workflow filter
Browse files Browse the repository at this point in the history
  • Loading branch information
mhwasil committed Oct 23, 2024
1 parent 6389bd0 commit a3f4f3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-build-test-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ jobs:
- name: Build image 🛠
if: |
${{ steps.changes.outputs.image_changed == 'true' }}
${{ steps.changes.outputs.base_changed == 'true' }}
${{ steps.changes.outputs.workflow_changed == 'true' }}
${{ steps.changes.outputs.image_changed == 'true' ||
steps.changes.outputs.base_changed == 'true' ||
steps.changes.outputs.workflow_changed == 'true' }}
id: build_image
uses: docker/build-push-action@v5
with:
Expand Down

0 comments on commit a3f4f3b

Please sign in to comment.