40 lines
873 B
YAML
40 lines
873 B
YAML
name: Build Hexo Site
|
|
|
|
on:
|
|
push:
|
|
branches: [main, master]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ~/.npm
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-node-
|
|
|
|
- name: Install Hexo dependencies
|
|
run: npm install
|
|
|
|
- name: Build Hexo
|
|
run: npm run build
|
|
|
|
- name: Deploy to HTML directory
|
|
run: |
|
|
rm -rf /home/ubuntu/html/*
|
|
cp -r public/* /home/ubuntu/html/
|
|
echo "✅ 构建完成!"
|
|
ls -la /home/ubuntu/html/ |