From b5b06bba92e3d73ed12cb86ec909368497d3dbb2 Mon Sep 17 00:00:00 2001 From: Alberto Bertogli Date: Sat, 3 Feb 2024 22:00:52 +0000 Subject: [PATCH] ci: Make Docker workflows run on tag pushes Since we moved the Docker workflows to Github (after v1.10), they have not been running on tags, so there are no tagged docker images for v1.11, v1.12 and v1.13. This is (hopefully) because we're not explicitly asking for the workflow to be run on tag pushes. This patch (hopefully) fixes that by adding an explicit section in the config to make it run on tag pushes. Thanks to Christoph Mewes (xrstf@github) for reporting this in https://github.com/albertito/chasquid/issues/51. --- .github/workflows/docker.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 781c529..ffef85d 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -3,6 +3,7 @@ name: "docker" on: push: branches: [ "master", "next" ] + tags: [ "v*", "test-tag-*" ] pull_request: # The branches below must be a subset of the branches above branches: [ "master", "next" ]