From d1cdc35b716bcc9d43b6f97a57a0bd8ea481085e Mon Sep 17 00:00:00 2001 From: fscarponi Date: Wed, 19 Jun 2024 17:08:44 +0200 Subject: [PATCH] Introduce failure recovery to GitHub Actions workflow Added new steps in the GitHub Actions workflow to ensure continued operation in case of failures during the library publishing process. If a failure occurs while running the 'publishAllPublicationsToSpaceRepository' gradle task, the workflow will subsequently patch IDE config files and attempt to re-publish the libraries. This ensures resilience in our CI/CD process. --- plugin/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/build.gradle.kts b/plugin/build.gradle.kts index e9f7f275..f4d81e41 100644 --- a/plugin/build.gradle.kts +++ b/plugin/build.gradle.kts @@ -135,7 +135,7 @@ tasks { ?.let { Parser.builder().build().parse(it) } ?.let { HtmlRenderer.builder().build().render(it) } ?.prefixIfNot("") +// ?.suffixIfNot("]]>") }