From 65807e784281e71c9575db8f75c8133c69b24851 Mon Sep 17 00:00:00 2001 From: Colin Sullender Date: Tue, 21 Mar 2023 19:26:01 -0400 Subject: [PATCH 1/2] Create artifacts directory in docker image --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index a6b9952..aef9b63 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,5 +2,6 @@ FROM python:3.11-alpine WORKDIR /app COPY ./requirements.txt /app/requirements.txt RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt +RUN mkdir -p /app/artifacts/ COPY ./find_posts.py /app/ ENTRYPOINT ["python", "find_posts.py"] From ddabff2d30f4d8a5a8365934e438154badca728a Mon Sep 17 00:00:00 2001 From: Colin Sullender Date: Tue, 21 Mar 2023 19:46:17 -0400 Subject: [PATCH 2/2] Disable keepalive-workflow --- .github/workflows/get_context.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/get_context.yml b/.github/workflows/get_context.yml index e0b8f3f..6b5a784 100644 --- a/.github/workflows/get_context.yml +++ b/.github/workflows/get_context.yml @@ -39,5 +39,5 @@ jobs: name: artifacts path: | artifacts - - name: Keep workflow alive - uses: gautamkrishnar/keepalive-workflow@v1 +# - name: Keep workflow alive +# uses: gautamkrishnar/keepalive-workflow@v1