Skip to content

Commit

Permalink
Update ci script
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeltroger committed Feb 27, 2024
1 parent cdd16be commit 180427f
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/update_opencv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: download sdk
run: wget https://github.com/opencv/opencv/releases/download/${{ github.event.inputs.version }}/opencv-${{ github.event.inputs.version }}-android-sdk.zip

- name: Unzip
run: unzip opencv-${{ github.event.inputs.version }}-android-sdk.zip
- name: download and unzip the sdk
run: |
wget https://github.com/opencv/opencv/releases/download/${{ github.event.inputs.version }}/opencv-${{ github.event.inputs.version }}-android-sdk.zip
unzip opencv-${{ github.event.inputs.version }}-android-sdk.zip
- name: copy new files
- name: replace the native folder
run: |
rm -rd opencv/native
mkdir opencv/native
Expand Down

0 comments on commit 180427f

Please sign in to comment.