Fix deploy script
Jekyll / jekyll (pull_request) Failing after 19s Details

Signed-off-by: Benoit Donneaux <benoit@leastauthority.com>
This commit is contained in:
bEn 2024-05-24 10:24:26 +02:00
parent a0d865d21b
commit 2ecd602f48
1 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ jobs:
else
WEB_ROOT="${WEB_DIR}/preview"
WEB_HOST="preview.${WEB_DOMAIN}"
WEB_CONTEXT='/{{ gitea.event.pull_request.number }}/'
WEB_CONTEXT='/${{ gitea.event.pull_request.number }}/'
end
# Save those variabes in the environment for the next steps
echo "WEB_HOST=${WEB_HOST}" >> $GITEA_ENV
@ -71,7 +71,7 @@ jobs:
# Synchronize the local and the remote site
rsync -halvi --delete \
-e "ssh -a -x -o StrictHostKeyChecking=no" \
"./_site/${WEB_USER}@${WEB_DOMAIN}:${WEB_ROOT}${WEB_CONTEXT}"
"./_site/" "${WEB_USER}@${WEB_DOMAIN}:${WEB_ROOT}${WEB_CONTEXT}"
- name: Comment pull request
id: comment_pull_request
if: gitea.event_name == 'pull_request'