Skip to content

Commit

Permalink
simplify condition
Browse files Browse the repository at this point in the history
Signed-off-by: Yutaka Kondo <[email protected]>
  • Loading branch information
youtalk committed Jul 17, 2024
1 parent 0fc684d commit 9e9f482
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build-and-push-self-hosted.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
docker/**
- name: Build 'Autoware'
if: steps.changed-files.outputs.any_changed == 'true' && (steps.author-check.outputs.author-found == 'true' || ${{ github.event_name == 'workflow_dispatch' }})
if: steps.changed-files.outputs.any_changed == 'true'
uses: ./.github/actions/docker-build-and-push
with:
name: ${{ matrix.name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-build-and-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
docker/**
- name: Build 'Autoware'
if: steps.changed-files.outputs.any_changed == 'true' && (steps.author-check.outputs.author-found == 'true' || ${{ github.event_name == 'workflow_dispatch' }})
if: steps.changed-files.outputs.any_changed == 'true'
uses: ./.github/actions/docker-build-and-push
with:
name: ${{ matrix.name }}
Expand Down

0 comments on commit 9e9f482

Please sign in to comment.