Skip to content

Commit

Permalink
Introduce failure recovery to GitHub Actions workflow
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
fscarponi committed Jun 19, 2024
1 parent ce4a5d4 commit d1cdc35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ tasks {
?.let { Parser.builder().build().parse(it) }
?.let { HtmlRenderer.builder().build().render(it) }
?.prefixIfNot("<![CDATA[")
?.suffixIfNot("]]>")
// ?.suffixIfNot("]]>")

}

Expand Down

0 comments on commit d1cdc35

Please sign in to comment.