Add a cleanup workflow
Jekyll / jekyll (pull_request) Successful in 21s Details
Jekyll cleanup / jekyll_cleanup (pull_request) Failing after 1s Details

Signed-off-by: Benoit Donneaux <benoit@leastauthority.com>
This commit is contained in:
bEn 2024-05-24 13:06:38 +02:00
parent a9ad6f6771
commit c1243b7a27
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
name: Jekyll cleanup
# only trigger on pull request closed events
on:
pull_request:
types: [ closed ]
env:
WEB_DOMAIN: lafs.eval.latfa.net
WEB_USER: www
WEB_ROOT: /var/www/preview
WEB_CONTEXT: "/${{ gitea.event.pull_request.number }}/"
jobs:
jekyll_cleanup:
runs-on: ubuntu-22.04
permissions:
pull-requests: write
actions: read
contents: read
steps:
- name: Cleanup Jeyll preview
id: cleanup_preview
run: |
# Prepare ssh key
echo "${{ secrets.WWW_DEPLOY_KEY }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
# Delete preview context from the remote site
sudo apt install -y lftp
echo -e "set sftp:connect-program ssh -a -x -o StrictHostKeyChecking=no; rm -r -f ${WEB_ROOT}${WEB_CONTEXT}\nbye" \
| lftp sftp://${WEB_USER}:unused@${WEB_DOMAN}