From 24c8e7ac42e0e600f8007c4b2641e985f9b12361 Mon Sep 17 00:00:00 2001 From: scawful Date: Tue, 14 Oct 2025 13:28:07 -0400 Subject: [PATCH] refactor(ci): adjust indentation in release workflow for clarity - Modified the indentation of commands in the release workflow to improve readability and maintainability. - Ensured consistent formatting for better alignment with coding standards. Benefits: - Enhances the clarity of the CI workflow, making it easier for contributors to understand and modify the build process. --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 11cb1dfb..09c5a92c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -537,11 +537,11 @@ jobs: else CORES=2 fi - echo "Using $CORES parallel jobs" - cmake --build build --parallel $CORES 2>&1 | tee build.log - if command -v ccache >/dev/null 2>&1; then - ccache --show-stats - fi + echo "Using $CORES parallel jobs" + cmake --build build --parallel $CORES 2>&1 | tee build.log + if command -v ccache >/dev/null 2>&1; then + ccache --show-stats + fi - name: "Report Build Failure" if: failure() && steps.build.outcome == 'failure'