Avoid ssh agent for now
Jekyll / jekyll (pull_request) Failing after 19s Details

Signed-off-by: Benoit Donneaux <benoit@leastauthority.com>
This commit is contained in:
bEn 2024-05-23 21:26:29 +02:00
parent 113b5fc6ad
commit 5ea0004940
1 changed files with 5 additions and 5 deletions

View File

@ -47,12 +47,12 @@ jobs:
id: load_ssh_key id: load_ssh_key
#if: ${{ github.ref == 'main' }} #if: ${{ github.ref == 'main' }}
run: | run: |
echo "${{ secrets.WWW_DEPLOY_KEY }}" > ~/.ssh/id_rsa echo "${{ secrets.WWW_DEPLOY_KEY }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_rsa chmod 600 ~/.ssh/id_ed25519
ssh-add ~/.ssh/id_rsa
- name: Publish Jekyll site - name: Publish Jekyll site
id: publish_site id: publish_site
#if: ${{ github.ref == 'main' }} #if: ${{ github.ref == 'main' }}
run: | run: |
rsync -halvi -e "ssh -a -x -o StrictHostKeyChecking=no" \ rsync -halvi \
-e "ssh -e ~/.ssh/id_ed25519 -a -x -o StrictHostKeyChecking=no" \
./_site/ www@lafs.eval.latfa.net:/var/www/site/ ./_site/ www@lafs.eval.latfa.net:/var/www/site/