Skip to content

Commit a91010b

Browse files
authored
Update windows.yml
1 parent 1ebbc44 commit a91010b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/windows.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,12 @@ jobs:
4343
env:
4444
GH_TOKEN: ${{ github.token }}
4545
run: |
46-
gh release download --repo shimat/opencv_files 4.10.0.20240612 --pattern "opencv4100_win_x64.zip" --output opencv.zip
47-
Expand-Archive -Path opencv.zip -DestinationPath opencv_files -Force -ErrorAction Stop
46+
gh release download --repo shimat/opencv_files 4.10.0.20240612 --pattern "opencv4100_win_x64.zip"
47+
gh release download --repo shimat/opencv_files 4.10.0.20240612 --pattern "opencv4100_win_x86.zip"
48+
ls
49+
New-Item opencv_files -ItemType Directory -Force
50+
Expand-Archive -Path opencv4100_win_x64.zip -DestinationPath opencv_files/ -Force -ErrorAction Stop
51+
Expand-Archive -Path opencv4100_win_x86.zip -DestinationPath opencv_files/ -Force -ErrorAction Stop
4852
ls opencv_files
4953
5054
#- name: Download OpenCV binaries

0 commit comments

Comments
 (0)