Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update entrypoint.sh
  • Loading branch information
frobinsonj authored and GitHub Enterprise committed Feb 17, 2023
1 parent 5828a9f commit 1461727
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions entrypoint.sh
Expand Up @@ -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..."
Expand All @@ -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..."
Expand All @@ -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..."
Expand Down

0 comments on commit 1461727

Please sign in to comment.