diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-05 00:21:33 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-05 00:21:36 +0000 |
| commit | b6fd27c7560011ca1e654eb348faa64b049ebca1 (patch) | |
| tree | 19bdeee381916ac218ffa018ba2ec0b89c420c2e /.github | |
| parent | fc95bae2a6c5e4fea5a63bd159462df172e9ed53 (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.yml | 3 |
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 |