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.
This commit is contained in:
scawful
2025-10-14 13:28:07 -04:00
parent e236ed93c3
commit 24c8e7ac42

View File

@@ -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'