summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorsupahgreg <supahgreg@users.noreply.github.com>2025-10-05 00:21:33 +0000
committersupahgreg <supahgreg@users.noreply.github.com>2025-10-05 00:21:36 +0000
commitb6fd27c7560011ca1e654eb348faa64b049ebca1 (patch)
tree19bdeee381916ac218ffa018ba2ec0b89c420c2e /.github
parentfc95bae2a6c5e4fea5a63bd159462df172e9ed53 (diff)
Restore behavior of using the 'latest' tag on images.
A 'main' tag was being created+used. https://github.com/docker/metadata-action?tab=readme-ov-file#latest-tag
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/publish.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 8c59ae75e..548d4cd41 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -45,6 +45,9 @@ jobs:
uses: docker/metadata-action@v5
with:
images: ${{ matrix.image.repository }}
+ tags: |
+ # set latest tag for default branch
+ type=raw,value=latest,enable={{is_default_branch}}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3