Skip to content

Commit

Permalink
[BUGFIX] Remove symlink option for now
Browse files Browse the repository at this point in the history
  • Loading branch information
mai-space authored May 30, 2022
1 parent d2b0ebb commit 76c47de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ then # Password


echo "> Deploying now"
sshpass -p $INPUT_PASS rsync --progress --stats -a -v -e -l "ssh -p $INPUT_PORT" $GITHUB_WORKSPACE/$INPUT_LOCAL $INPUT_USER@$INPUT_HOST:$INPUT_REMOTE --delete
sshpass -p $INPUT_PASS rsync --progress --stats -a -v -e "ssh -p $INPUT_PORT" $GITHUB_WORKSPACE/$INPUT_LOCAL $INPUT_USER@$INPUT_HOST:$INPUT_REMOTE --delete

[[ -z "${INPUT_RUNAFTER}" ]] && {
echo "> Executing commands after deployment"
Expand Down Expand Up @@ -59,7 +59,7 @@ else # Private key
}

echo "> Deploying now"
sshpass -e rsync --progress --stats -a -v -e -l "ssh -p $INPUT_PORT" $GITHUB_WORKSPACE/$INPUT_LOCAL $INPUT_USER@$INPUT_HOST:$INPUT_REMOTE --delete
sshpass -e rsync --progress --stats -a -v -e "ssh -p $INPUT_PORT" $GITHUB_WORKSPACE/$INPUT_LOCAL $INPUT_USER@$INPUT_HOST:$INPUT_REMOTE --delete

[[ -z "${INPUT_RUNAFTER}" ]] && {
echo "> Executing commands after deployment"
Expand Down

0 comments on commit 76c47de

Please sign in to comment.