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