Compare commits
2 Commits
2026.01.24
...
00ce124a3e
| Author | SHA1 | Date | |
|---|---|---|---|
| 00ce124a3e | |||
| 7262305343 |
7
.github/workflows/nightly.yml
vendored
7
.github/workflows/nightly.yml
vendored
@@ -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
|
||||||
|
|||||||
3
.github/workflows/release.yml
vendored
3
.github/workflows/release.yml
vendored
@@ -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' ' ')
|
||||||
|
|||||||
Reference in New Issue
Block a user