fix: update tag pattern in release workflow and set default tag to 'latest'
Some checks failed
Docker Image (Nightly) / check_changes (push) Successful in 5s
Docker Image (Nightly) / push_to_registry (push) Failing after 11s

This commit is contained in:
2026-01-25 03:39:16 +00:00
committed by GitHub
parent 7262305343
commit 00ce124a3e

View File

@@ -3,6 +3,7 @@ name: Release Docker Image
on:
push:
tags:
- '[0-9][0-9][0-9][0-9].[0-9][0-9].[0-9][0-9]'
env:
REGISTRY: docker.io
@@ -67,7 +68,7 @@ jobs:
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
tags: ${{ steps.meta.outputs.tags || 'latest' }}
labels: |
${{ steps.meta.outputs.labels }}
org.opencontainers.image.description=$(cat README.md | head -20 | tr '\n' ' ')