From 4c6405713a087781f6bdabf6a31d00d81f7b9a0b Mon Sep 17 00:00:00 2001 From: kba Date: Thu, 25 Sep 2025 22:19:36 +0200 Subject: [PATCH] ci: ocr models --- .github/workflows/test-eynollah.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-eynollah.yml b/.github/workflows/test-eynollah.yml index b270ab1..042e508 100644 --- a/.github/workflows/test-eynollah.yml +++ b/.github/workflows/test-eynollah.yml @@ -29,13 +29,18 @@ jobs: with: path: models_layout_v0_5_0 key: ${{ runner.os }}-models + - uses: actions/cache@v4 + id: ocr_model_cache + with: + path: models_ocr_v0_5_0 + key: ${{ runner.os }}-models - uses: actions/cache@v4 id: bin_model_cache with: path: default-2021-03-09 key: ${{ runner.os }}-modelbin - name: Download models - if: steps.seg_model_cache.outputs.cache-hit != 'true' || steps.bin_model_cache.outputs.cache-hit != 'true' + if: steps.seg_model_cache.outputs.cache-hit != 'true' || steps.bin_model_cache.outputs.cache-hit != 'true' || steps.ocr_model_cache.outputs.cache-hit != true run: make models - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5