Work on CI/CD
Some checks failed
Deploy / build (push) Successful in 7s
Deploy / deploy (push) Failing after 5s

This commit is contained in:
Aloïs Micard 2024-12-23 12:37:28 +01:00
parent 511011b46a
commit 1204f758d2

View file

@ -32,7 +32,9 @@ jobs:
name: website
- name: Install lftp
run: apt install -y lftp
run: |
apt update
apt install -y lftp
- name: Deploy website
run: lftp -c "open -u $FTP_USER,$FTP_PASS $FTP_HOST; mirror -R public/ ~/$FTP_DIR; quit"