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

This commit is contained in:
Aliberk Sandıkçı 2024-11-11 22:09:43 +03:00
parent 22864c548c
commit df3e411f6a

View file

@ -28,7 +28,7 @@ jobs:
run: | run: |
apt update -y apt update -y
apt upgrade -y apt upgrade -y
apt install openssh-client openssh-server sshpass ruby jekyll -y apt install openssh-client sshpass ruby jekyll -y
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@ -46,6 +46,7 @@ jobs:
whoami whoami
echo "this is a text file" >> index.html echo "this is a text file" >> index.html
date >> index.html date >> index.html
cat index.html
export SSHPASS= ${{ secrets.SFTP_PASSWORD }} export SSHPASS= ${{ secrets.SFTP_PASSWORD }}
sshpass -e sftp -oBatchMode=no -b - ${{ secrets.SFTP_USERNAME }}@${{ vars.SFTP_HOST }} << ! sshpass -e sftp -oBatchMode=no -b - ${{ secrets.SFTP_USERNAME }}@${{ vars.SFTP_HOST }} << !
put index.html www/index.html put index.html www/index.html