From e2c1a12d567c36376e2ab767716ace3bb594611c Mon Sep 17 00:00:00 2001 From: lukemartinlogan Date: Thu, 8 Feb 2024 12:13:25 -0600 Subject: [PATCH] Always run container on workflow dispatch --- .github/workflows/build_and_push_docker_images.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_and_push_docker_images.yml b/.github/workflows/build_and_push_docker_images.yml index 01dedf3f6..a11b38ed4 100644 --- a/.github/workflows/build_and_push_docker_images.yml +++ b/.github/workflows/build_and_push_docker_images.yml @@ -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