test
Some checks failed
Build Hexo Site / build (push) Has been cancelled

This commit is contained in:
魏风
2026-03-10 20:45:43 +08:00
parent 83a5dfe8b8
commit a133fbc1ec

View File

@@ -10,15 +10,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: https://git.makefire.fun/actions/checkout@v4
uses: https://gitea.com/actions/checkout@v4
- name: Setup Node.js
uses: https://git.makefire.fun/actions/setup-node@v4
uses: https://gitea.com/actions/setup-node@v4
with:
node-version: '20'
node-version: "20"
- name: Cache npm dependencies
uses: actions/cache@v4
uses: https://gitea.com/actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -30,9 +30,3 @@ jobs:
- name: Build Hexo
run: npm run build
- name: Deploy to local directory
run: |
rm -rf /home/ubuntu/html/*
cp -r public/* /home/ubuntu/html/
echo "✅ Hexo 构建完成,已输出到 /home/ubuntu/html"