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

This commit is contained in:
Aliberk Sandıkçı 2024-11-11 22:13:32 +03:00
parent df3e411f6a
commit 77266430d2

View file

@ -28,16 +28,7 @@ jobs:
run: |
apt update -y
apt upgrade -y
apt install openssh-client sshpass ruby jekyll -y
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
github-server-url: 'https://git.asandikci.com'
# submodules: true
# If using the 'assets' git submodule from Chirpy Starter, uncomment above
# (See: https://github.com/cotes2020/chirpy-starter/tree/main/assets)
# apt install openssh-client sshpass ruby jekyll -y
- name: Health Check [CI TEST]
run: |
@ -48,11 +39,19 @@ jobs:
date >> index.html
cat index.html
export SSHPASS= ${{ secrets.SFTP_PASSWORD }}
sshpass -e sftp -oBatchMode=no -b - ${{ secrets.SFTP_USERNAME }}@${{ vars.SFTP_HOST }} << !
sshpass -e sftp -oBatchMode=no -o StrictHostKeyChecking=accept-new -b - ${{ secrets.SFTP_USERNAME }}@${{ vars.SFTP_HOST }} << !
put index.html www/index.html
bye
!
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
github-server-url: 'https://git.asandikci.com'
# submodules: true
# If using the 'assets' git submodule from Chirpy Starter, uncomment above
# (See: https://github.com/cotes2020/chirpy-starter/tree/main/assets)
- name: Build Site
run: bundle exec jekyll b