From 175d4c08d864ef067a6ad3ab6f5b83234c7a2344 Mon Sep 17 00:00:00 2001 From: Catus Phan Date: Tue, 17 Dec 2024 15:37:45 +0800 Subject: [PATCH] Updates sourcesource --- .github/workflows/release_all.yml | 5 +++-- .github/workflows/release_all_external.yml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release_all.yml b/.github/workflows/release_all.yml index b7baa02..4a25fa5 100644 --- a/.github/workflows/release_all.yml +++ b/.github/workflows/release_all.yml @@ -54,13 +54,14 @@ jobs: run: | pip install uv && uv venv .venv && - uv sync && - source .venv/bin/activate + uv sync # pip install -r ./requirements.txt - name: Build all dictionaries run: | + source .venv/bin/activate && + uv pip list && python ./bin/convert_all.py --input_folder=$INPUT_DIR --output_folder=$OUTPUT_DIR --extension=tab --filter=Hero - name: Report the results diff --git a/.github/workflows/release_all_external.yml b/.github/workflows/release_all_external.yml index b88c1d9..5e448ef 100644 --- a/.github/workflows/release_all_external.yml +++ b/.github/workflows/release_all_external.yml @@ -55,8 +55,7 @@ jobs: run: | pip install uv && uv venv .venv && - uv sync && - source .venv/bin/activate + uv sync # pip install -r ./requirements.txt @@ -67,6 +66,8 @@ jobs: - name: Build all dictionaries run: | + source .venv/bin/activate && + uv pip list && python ./bin/convert_all.py --input_folder=$INPUT_DIR --output_folder=$OUTPUT_DIR --extension=tab --filter=Hero - name: Report the results