Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/docker-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
name: Docker Image CI and CD

on:
schedule:
- cron: '30 1 * * *' # everyday at 1:30 PM UTC
workflow_dispatch:


Expand All @@ -34,6 +36,14 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Configure Docker metadata
id: meta
uses: docker/metadata-action@v3
with:
images: apache/systemds
tags: |
type=schedule,pattern=nightly

# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
Expand Down Expand Up @@ -68,5 +78,6 @@ jobs:
context: .
file: ./docker/sysds.Dockerfile
push: true
tags: apache/systemds:nightly
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}