Skip to content

feat: add excerpt

feat: add excerpt #409

Workflow file for this run

name: Build & Deploy
on:
push:
branches: [main]
jobs:
deploy:
name: Deploy to Github Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: NullVoxPopuli/[email protected]
with:
no-lockfile: true
- name: pnpm install, build
run: |
pnpm install
pnpm run build
- name: Deploy to another repository
uses: s0/git-publish-subdir-action@develop
env:
REPO: [email protected]:Carina957/Carina957.github.io.git
BRANCH: main
FOLDER: docs/.vitepress/dist
SSH_PRIVATE_KEY: ${{secrets.DEPLOY_PRIVATE_KEY}}