diff --git a/.github/ISSUE_TEMPLATE/workflows/windows-build.yml b/.github/workflows/windows-build.yml similarity index 67% rename from .github/ISSUE_TEMPLATE/workflows/windows-build.yml rename to .github/workflows/windows-build.yml index 0a303be8..3196e22b 100644 --- a/.github/ISSUE_TEMPLATE/workflows/windows-build.yml +++ b/.github/workflows/windows-build.yml @@ -17,6 +17,20 @@ jobs: with: python-version: '3.11.5' + - name: Install Tesseract + run: | + choco install tesseract + echo "C:\Program Files\Tesseract-OCR" >> $GITHUB_PATH + + - name: Check Tesseract Path + run: | + Get-Command tesseract + + - name: Print PATH and Check Tesseract Directory + run: | + echo "PATH: $env:PATH" + ls "C:\Program Files\Tesseract-OCR" + - name: Install dependencies run: | pip install -r requirements.txt