From 3410d3847542a7636273e9c87fef68d69609ed86 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Tue, 13 Jan 2026 23:16:33 +0800 Subject: [PATCH] Update check_profiles.yml to suppress output during unzip operation --- .github/workflows/check_profiles.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check_profiles.yml b/.github/workflows/check_profiles.yml index 9781c6b8f3..9da59f43a7 100644 --- a/.github/workflows/check_profiles.yml +++ b/.github/workflows/check_profiles.yml @@ -58,7 +58,7 @@ jobs: run: | set +e curl -LJO https://github.com/OrcaSlicer/OrcaSlicer/releases/download/nightly-builds/orca_custom_preset_tests.zip - unzip ./orca_custom_preset_tests.zip -d ${{ github.workspace }}/resources/profiles + unzip -q ./orca_custom_preset_tests.zip -d ${{ github.workspace }}/resources/profiles ./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 2>&1 | tee ${{ runner.temp }}/validate_custom.log exit ${PIPESTATUS[0]}