Skip to content

Commit

Permalink
fix: correct wget usage
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph0x45 committed Jan 22, 2024
1 parent 72b0246 commit c4c8cee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
- name: Download models
run: |
mkdir models
wget -P models -O https://github.com/Kagami/go-face-testdata/raw/master/models/shape_predictor_5_face_landmarks.dat
wget -P models -O https://github.com/Kagami/go-face-testdata/raw/master/models/dlib_face_recognition_resnet_model_v1.dat
wget -P models -O https://github.com/Kagami/go-face-testdata/raw/master/models/mmod_human_face_detector.dat
wget -P models -O shape_predictor_5_face_landmarks.dat https://github.com/Kagami/go-face-testdata/raw/master/models/shape_predictor_5_face_landmarks.dat
wget -P models -O dlib_face_recognition_resnet_model_v1.dat https://github.com/Kagami/go-face-testdata/raw/master/models/dlib_face_recognition_resnet_model_v1.dat
wget -P models -O mmod_human_face_detector.dat https://github.com/Kagami/go-face-testdata/raw/master/models/mmod_human_face_detector.dat
- name: Build and push Docker image
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
Expand Down

0 comments on commit c4c8cee

Please sign in to comment.