From 51511892c6538a42f0ba1d787246d4a52584612d Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Thu, 10 Aug 2023 20:52:14 +0100 Subject: [PATCH] ci: rename *.log to *.txt to work around gitlab bug Signed-off-by: Eric Engestrom Part-of: --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b9b9278..49a9fbd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -53,6 +53,9 @@ default: unset CI_JOB_JWT # Unsetting vulnerable env variables after_script: + # Work around https://gitlab.com/gitlab-org/gitlab/-/issues/20338 + - find -name '*.log' -exec mv {} {}.txt \; + - > set +x -- 2.7.4