Update .github/workflows/pages-deploy.yml
Some checks failed
Build and Deploy / build (push) Failing after 43s

This commit is contained in:
Aliberk Sandıkçı 2024-11-11 22:17:12 +03:00
parent 43aeb033ec
commit 2b94110af6

View file

@ -28,8 +28,7 @@ jobs:
run: |
apt update -y
apt upgrade -y
apt install sshpass
# openssh-client ruby jekyll -y
apt install sshpass openssh-client # ruby jekyll -y
- name: Health Check [CI TEST]
run: |
@ -39,8 +38,9 @@ jobs:
echo "this is a text file" >> index.html
date >> index.html
cat index.html
export SSHPASS= ${{ secrets.SFTP_PASSWORD }}
sshpass -e sftp -oBatchMode=no -o StrictHostKeyChecking=accept-new -b - ${{ secrets.SFTP_USERNAME }}@${{ vars.SFTP_HOST }} << !
echo '${{ secrets.SFTP_PASSWORD }}' > ~/.passwd
chmod 0400 ~/.passwd
sshpass -f ~/.passwd -e sftp -oBatchMode=no -o StrictHostKeyChecking=accept-new -b - ${{ secrets.SFTP_USERNAME }}@${{ vars.SFTP_HOST }} << !
put index.html www/index.html
bye
!