Skip to content

fix&docs: 修复chatbox组件部分情况下的内容溢出问题,微调一些 chatbox 使用 (#46) #55

fix&docs: 修复chatbox组件部分情况下的内容溢出问题,微调一些 chatbox 使用 (#46)

fix&docs: 修复chatbox组件部分情况下的内容溢出问题,微调一些 chatbox 使用 (#46) #55

Workflow file for this run

name: docs
on:
push:
branches:
- main
- master
workflow_dispatch:
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: true
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: pnpm
- name: Build VuePress site
run: pnpm docs:build
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v4
with:
target_branch: gh-pages
build_dir: docs/.vuepress/dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Push changes
if: github.repository == 'sealdice/sealdice-manual-next'
env:
KEY: ${{ secrets.KEY }}
URL: ${{ secrets.URL }}
run: |
mkdir -p ~/.ssh/
echo "$KEY" > ~/.ssh/id_rsa
sudo chmod 600 ~/.ssh/id_rsa
ssh-keyscan gitlab.com >> ~/.ssh/known_hosts
git push "$URL" main:gh-pages -f