Skip to content

Commit

Permalink
Always run container on workflow dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemartinlogan committed Feb 8, 2024
1 parent f2e5f5a commit e2c1a12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_push_docker_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
# default: false
jobs:
build-docker-images:
if: ${{ github.ref_type == 'tag' || github.event.inputs.build_docker_images }}
if: ${{ github.ref_type == 'tag' || github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-20.04
steps:
- name: Cache Hermes deps Docker
Expand Down

0 comments on commit e2c1a12

Please sign in to comment.