@@ -44,15 +44,14 @@ jobs:
44
44
GH_TOKEN : ${{ github.token }}
45
45
run : |
46
46
gh release download --repo shimat/opencv_files 4.10.0.20240612 --pattern "opencv4100_win_x64.zip" --output opencv.zip
47
- ls
48
- Expand-Archive -Path opencv.zip -DestinationPath opencv -Force -ErrorAction Stop
49
- ls opencv
47
+ Expand-Archive -Path opencv.zip -DestinationPath opencv_files -Force -ErrorAction Stop
48
+ ls opencv_files
50
49
51
- - name : Download OpenCV binaries
52
- if : steps.cache_opencv.outputs.cache-hit != 'true'
53
- shell : powershell
54
- run : |
55
- . ".\download_opencv_windows.ps1"
50
+ # - name: Download OpenCV binaries
51
+ # if: steps.cache_opencv.outputs.cache-hit != 'true'
52
+ # shell: powershell
53
+ # run: |
54
+ # . ".\download_opencv_windows.ps1"
56
55
57
56
- name : Cache Tesseract binaries
58
57
id : cache_tesseract
@@ -68,15 +67,16 @@ jobs:
68
67
GH_TOKEN : ${{ github.token }}
69
68
run : |
70
69
gh release download --repo shimat/tesseract_vcpkg 2023.07.06 --pattern "*.zip" --output tesseract.zip
71
- ls
72
- Expand-Archive -Path tesseract.zip -DestinationPath tesseract -Force -ErrorAction Stop
73
- ls tesseract
70
+ Expand-Archive -Path tesseract.zip -DestinationPath tesseract_files -Force -ErrorAction Stop
71
+ New-Item tesseract_files/tesseract_vcpkg -ItemType Directory -Force
72
+ Move-Item tesseract_files\*\* tesseract_files/tesseract_vcpkg
73
+ ls tesseract_files/tesseract_vcpkg
74
74
75
- - name : Download Tesseract binaries
76
- if : steps.cache_tesseract.outputs.cache-hit != 'true'
77
- shell : powershell
78
- run : |
79
- . ".\download_tesseract_windows.ps1"
75
+ # - name: Download Tesseract binaries
76
+ # if: steps.cache_tesseract.outputs.cache-hit != 'true'
77
+ # shell: powershell
78
+ # run: |
79
+ # . ".\download_tesseract_windows.ps1"
80
80
81
81
- name : NuGet restore
82
82
shell : cmd
0 commit comments