ci: Do not publish prerelease docker tags anymore

The `-dev.` docker tags create a lot of noise and cloud out the actual
non-prerelease versions in the tag listings on Docker Hub and GHCR.
Additionally, there's no built-in retention policies in these registries
and manual attempts to clean up old dev images are difficult.

Users that are interested in immutable tags can pin the `edge` tag to a
digest.
pull/241/head
Robert Dailey 12 months ago
parent 4e81f1ba01
commit 81928f7c8e

@ -26,7 +26,6 @@ jobs:
uses: gittools/actions/gitversion/setup@v0
with:
versionSpec: 6.x
includePrerelease: true
- name: Determine Version
uses: gittools/actions/gitversion/execute@v0
@ -47,7 +46,7 @@ jobs:
ghcr.io/${{ github.repository }}
tags: |
type=edge,branch=master
${{ env.semver }},pattern={{version}}
${{ env.semver }},${{ env.prod }},pattern={{version}}
${{ env.semver }},${{ env.prod }},pattern={{major}}.{{minor}}
${{ env.semver }},${{ env.prod }},pattern={{major}}

Loading…
Cancel
Save