diff --git a/entrypoint.sh b/entrypoint.sh index fcba313..81db0c0 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -8,7 +8,7 @@ unset INPUT_REPOSITORY # Clone crawler echo "Cloning crawler..." -git clone "https://$INPUT_ACTOR:$INPUT_TOKEN@teamhydra.io/$CRAWLER_REPOSITORY.git" crawler +git clone "https://$INPUT_ACTOR:$INPUT_TOKEN@teamhydra.io/$CRAWLER_REPOSITORY.git" /crawler # Install crawler dependencies echo "Installing crawler dependencies..." @@ -17,7 +17,7 @@ npm install # Clone workspace echo "Cloning workspace..." -git clone "https://$INPUT_ACTOR:$INPUT_TOKEN@teamhydra.io/$WORKSPACE_REPOSITORY.git" workspace +git clone "https://$INPUT_ACTOR:$INPUT_TOKEN@teamhydra.io/$WORKSPACE_REPOSITORY.git" /workspace # Inject .env from workspace echo "Injecting .env from workspace..." @@ -26,7 +26,7 @@ cp /workspace/.env /crawler/.env # Clone output echo "Cloning output..." -git clone "https://$INPUT_ACTOR:$INPUT_TOKEN@teamhydra.io/$OUTPUT_REPOSITORY.git" output +git clone "https://$INPUT_ACTOR:$INPUT_TOKEN@teamhydra.io/$OUTPUT_REPOSITORY.git" /output # Run crawler echo "Running crawler..."