2 Commits

Author SHA1 Message Date
00ce124a3e 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
2026-01-25 03:39:16 +00:00
7262305343 fix: update workflow name and remove unnecessary triggers in nightly build 2026-01-25 03:34:21 +00:00
2 changed files with 3 additions and 7 deletions

View File

@@ -1,13 +1,9 @@
name: Development Docker Image (Nightly)
name: Docker Image (Nightly)
on:
schedule:
# Run every night at 5:00 UTC
- cron: '0 5 * * *'
push:
branches:
- dev
workflow_dispatch: # Allow manual triggering
env:
REGISTRY: docker.io
@@ -89,7 +85,6 @@ jobs:
tags: |
type=raw,value=nightly
type=raw,value=dev-latest
type=sha,prefix=dev-
labels: |
org.opencontainers.image.created=${{ github.event.head_commit.timestamp }}
org.opencontainers.image.licenses=MIT

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' ' ')