From b6fd27c7560011ca1e654eb348faa64b049ebca1 Mon Sep 17 00:00:00 2001 From: supahgreg Date: Sun, 5 Oct 2025 00:21:33 +0000 Subject: 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 --- .github/workflows/publish.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to '.github/workflows') 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 -- cgit v1.2.3-54-g00ecf