From 74eb47e67081572542bc4db5cd652d3dc44d33da Mon Sep 17 00:00:00 2001 From: mwisnowski <93788087+mwisnowski@users.noreply.github.com> Date: Sat, 18 Oct 2025 21:37:07 -0700 Subject: [PATCH] Change tagging step to run in parallel --- .github/workflows/build-similarity-cache.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-similarity-cache.yml b/.github/workflows/build-similarity-cache.yml index 44281de..f75c97d 100644 --- a/.github/workflows/build-similarity-cache.yml +++ b/.github/workflows/build-similarity-cache.yml @@ -78,10 +78,10 @@ jobs: run: | python -c "from code.file_setup.setup import initial_setup; initial_setup()" - - name: Run tagging (serial - more reliable in CI) + - name: Run tagging (parallel) if: steps.check_cache.outputs.needs_build == 'true' run: | - python -c "from code.tagging.tagger import run_tagging; run_tagging(parallel=False)" + python -c "from code.tagging.tagger import run_tagging; run_tagging(parallel=True)" - name: Build similarity cache (Parquet) from card_files/processed/all_cards.parquet if: steps.check_cache.outputs.needs_build == 'true'