Add steps to continously deploy the Jekyll site #3

Merged
btlogy merged 7 commits from 1.site-deploy into main 2024-05-23 19:33:32 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit b2b82838a6 - Show all commits

View File

@ -45,13 +45,13 @@ jobs:
jekyll build --verbose jekyll build --verbose
- name: Prepare ssh key - name: Prepare ssh key
id: prepare_ssh_key id: prepare_ssh_key
#if: ${{ github.ref == 'main' }} if: ${{ github.ref == 'main' }}
run: | run: |
echo "${{ secrets.WWW_DEPLOY_KEY }}" > ~/.ssh/id_ed25519 echo "${{ secrets.WWW_DEPLOY_KEY }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519 chmod 600 ~/.ssh/id_ed25519
- 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 \ rsync -halvi \
-e "ssh -a -x -o StrictHostKeyChecking=no" \ -e "ssh -a -x -o StrictHostKeyChecking=no" \