From 02b34f8ddb9bb80d857d9f3bdb7c0478da0953e8 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Wed, 26 Mar 2025 20:19:56 +0800 Subject: [PATCH] fix path 2 --- .github/workflows/build_check_cache.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_check_cache.yml b/.github/workflows/build_check_cache.yml index 5697ab36f2..edc8b89aad 100644 --- a/.github/workflows/build_check_cache.yml +++ b/.github/workflows/build_check_cache.yml @@ -30,7 +30,8 @@ jobs: - name: set outputs id: set_outputs env: - dep-folder-name: ${{ (inputs.os == 'windows-latest' && '/OrcaSlicer_dep') || (inputs.os == 'macos-14' && '') || '/destdir' }} + # todo: this is mad! refactor other build scripts to use same name + dep-folder-name: ${{ inputs.os == 'windows-latest' && '/OrcaSlicer_dep' || inputs.os == 'macos-14' && '' || inputs.os != 'macos-14' && '/destdir' || '' }} output-cmd: ${{ inputs.os == 'windows-latest' && '$env:GITHUB_OUTPUT' || '"$GITHUB_OUTPUT"'}} run: | echo cache-key=${{ inputs.os }}-cache-orcaslicer_deps-build-${{ hashFiles('deps/**') }} >> ${{ env.output-cmd }}