Skip to content

Commit

Permalink
Merge pull request #675 from lukemartinlogan/master
Browse files Browse the repository at this point in the history
Always run container on workflow dispatch
  • Loading branch information
lukemartinlogan authored Feb 8, 2024
2 parents 5d69d72 + e2c1a12 commit 417cc11
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 417cc11

Please sign in to comment.