1
Some checks failed
Build Project / build (push) Failing after 1m1s

This commit is contained in:
mozzie 2024-06-04 13:42:24 +08:00
parent ac475f5b23
commit 1f5b084f35

View File

@ -8,14 +8,16 @@ on:
jobs:
build:
runs-on: ubuntu-latest
container:
image: node:18
options: --volume /www/wwwroot/caddy/html/:/public
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
@ -29,4 +31,10 @@ jobs:
run: hexo g
- name: build algolia search index
run: pnpm run search
run: pnpm run search
- name: Copy files to remote server
run: |
scp -r public/* root@maxshader.com:/www/wwwroot/caddy/html/blog-hexo
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}