From 3637efa45a8b6d27704e10947d7fa480775a06e1 Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Fri, 22 Jul 2022 15:37:40 -0500 Subject: [PATCH] ci: Run Docker workflow on all branches Tags are explicitly ignored on push. We still want branches to be processed, but they won't if the `branches` property is missing. See more detail here: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onpushbranchestagsbranches-ignoretags-ignore --- .github/workflows/docker.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 2f6d882f..4b6b11c8 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -3,7 +3,11 @@ name: Docker Image on: push: + # Tags are explicitly ignored on push. We still want branches to be processed, but they won't if + # the `branches` property is missing. See more detail here: + # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onpushbranchestagsbranches-ignoretags-ignore tags-ignore: ['*'] + branches: ['*'] paths: - docker/** - .github/workflows/docker.yml