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 12s
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: on:
schedule: schedule:
# Run every night at 5:00 UTC # Run every night at 5:00 UTC
- cron: '0 5 * * *' - cron: '0 5 * * *'
push:
branches:
- dev
workflow_dispatch: # Allow manual triggering
env: env:
REGISTRY: docker.io REGISTRY: docker.io
@@ -89,7 +85,6 @@ jobs:
tags: | tags: |
type=raw,value=nightly type=raw,value=nightly
type=raw,value=dev-latest type=raw,value=dev-latest
type=sha,prefix=dev-
labels: | labels: |
org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} org.opencontainers.image.created=${{ github.event.head_commit.timestamp }}
org.opencontainers.image.licenses=MIT org.opencontainers.image.licenses=MIT

View File

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