diff options
| -rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a89ac37..8e717a8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -199,7 +199,9 @@ jobs: uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY_IMAGE }} - tags: ${{ env.DOCKER_VERSION }} + tags: | + ${{ env.DOCKER_VERSION }} + ${{ env.NEW_RELEASE == 'True' && 'latest' || '' }} - name: Login to Docker Hub uses: docker/login-action@v3 |
