Skip to content

Add instruction for changing user folder name. #66

Add instruction for changing user folder name.

Add instruction for changing user folder name. #66

Workflow file for this run

name: Automatic Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.125.4'
extended: true
- name: Generate
run: |
hugo
- name: Deploy to Github Pages
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: gh-pages
FOLDER: _book
GITHUB_TOKEN: ${{ secrets.GH_PUSH_KEY_MISSING }}
- name: Configure SSH
run: |
mkdir -p ~/.ssh/
echo "${{ secrets.SERVER_SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan -t ed25519 -p ${{ secrets.SERVER_SSH_PORT }} ${{ secrets.SERVER_IP }} >> ~/.ssh/known_hosts
- name: Deploy to Server
run: |
cd ./_book
rsync -e 'ssh -p ${{ secrets.SERVER_SSH_PORT }}' -avz --delete ./ ${{ secrets.SERVER_USERNAME }}@${{ secrets.SERVER_IP }}:${{ secrets.SERVER_MISSING_PATH }}