blog-hexo/.gitea/workflows/build.yml
mozzie cb998e29f6
Some checks failed
Build Project / build (push) Failing after 1m26s
2
2024-06-04 11:03:17 +08:00

37 lines
717 B
YAML

name: Build Project
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18' # or specify the version you need
- name: Install pnpm
run: npm i -g pnpm hexo
- name: Install dependencies
run: pnpm install
- name: hexo clean
run: hexo cl
- name: hexo generate
run: hexo g
- name: build algolia search index
run: pnpm run search
- name: move dist assets
run: cp -rf public/* /www/wwwroot/caddy/html/blog-hexo/