diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 4e004979..253910f7 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -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 \ No newline at end of file + 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 }} \ No newline at end of file