41 lines
1,004 B
YAML
41 lines
1,004 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: gitpot_main
|
|
container:
|
|
image: ghcr.io/peaceiris/hugo:latest-full
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Dependencies
|
|
run: |
|
|
apt-get update
|
|
apt-get install -y rsync
|
|
|
|
- name: Setup Hugo
|
|
uses: https://github.com/peaceiris/actions-hugo@v2
|
|
with:
|
|
hugo-version: 'latest'
|
|
extended: true
|
|
|
|
- name: Build Hugo Site
|
|
run: hugo
|
|
|
|
- name: Prepare Deployment
|
|
run: |
|
|
mv public/* .
|
|
rmdir public
|
|
|
|
- name: Deploy to Host
|
|
uses: https://github.com/appleboy/scp-action@v0.1.7
|
|
with:
|
|
host: ${{ secrets.SSH_HOST }}
|
|
username: ${{ secrets.SSH_USERNAME }}
|
|
key: ${{ secrets.SSH_PRIV_KEY }}
|
|
passphrase: ${{ secrets.SSH_PASSPHRASE }}
|
|
port: ${{ secrets.SSH_PORT }}
|
|
source: .
|
|
target: "/var/www/wiki.lunivity.com/"
|