From db87b371e37745ec2b17c88827d5a3278c30afa9 Mon Sep 17 00:00:00 2001 From: TheWisePigeon Date: Mon, 22 Jan 2024 14:15:39 +0000 Subject: [PATCH] fix: models not found --- .github/workflows/publish.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index de200ea..88cdfaa 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -28,9 +28,10 @@ jobs: - name: Download models run: | mkdir models - 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 + cd models + wget https://github.com/Kagami/go-face-testdata/raw/master/models/shape_predictor_5_face_landmarks.dat + wget https://github.com/Kagami/go-face-testdata/raw/master/models/dlib_face_recognition_resnet_model_v1.dat + wget https://github.com/Kagami/go-face-testdata/raw/master/models/mmod_human_face_detector.dat - name: Setup node uses: actions/setup-node@v4