From 414434608e90bc2d9e72d2c1b074ef69888dbd62 Mon Sep 17 00:00:00 2001 From: Chris Coley <chris@codingallnight.com> Date: Sat, 15 Jun 2024 21:49:35 -0700 Subject: [PATCH] Test failure when purge-list.txt doesn't exist --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7f8ccfb..d8527f4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -104,9 +104,10 @@ create-purge-list: # Duplicate each line, adding a trailing slash to the duplicates - sed -i 'p;s|$|/|' purge-list.txt - cat purge-list.txt + - mv purge-list.txt purge.txt artifacts: paths: - - purge-list.txt + - purge.txt trigger-cache-purge: stage: .post -- GitLab