Skip to content

Commit

Permalink
ci: Make Docker workflows run on tag pushes
Browse files Browse the repository at this point in the history
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
#51.
  • Loading branch information
albertito committed Feb 3, 2024
1 parent 36688aa commit 30c286f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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" ]
Expand Down

0 comments on commit 30c286f

Please sign in to comment.