From 9a0cdef2d1a7c060fcf36cbe65ad596648536ec5 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 4 Jul 2023 11:07:29 +0100 Subject: [PATCH] feat: add Dockerfile and entrypoint to docker-publish workflow The commit adds the Dockerfile and entrypoint files to the docker-publish workflow. This allows for automated building and publishing of Docker images on a weekly schedule. --- .github/workflows/docker-publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index b1643b4..d885ef6 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -6,6 +6,7 @@ on: branches: "main" paths: - Dockerfile* + - entrypoint* schedule: - cron: "0 2 * * 6"