Skip to content

Commit

Permalink
feat: add ci and fix link
Browse files Browse the repository at this point in the history
  • Loading branch information
spacemeowx2 committed Nov 19, 2024
1 parent 49ea2fb commit 2994be7
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 2 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Deploy Github Actions
on:
push:
branches: [main, feature-docs]

jobs:
Deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: pnpm
cache-dependency-path: docs/pnpm-lock.yaml
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Deploy
run: |
cd docs
pnpm build
cd src/.vuepress/dist
# echo 'www.example.com' > CNAME
git init
git config user.email "[email protected]"
git config user.name "spacemeowx2"
git checkout -b dist
git add -A
git commit -m "deploy at `date`"
git push -f https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} dist
4 changes: 2 additions & 2 deletions docs/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ function HomepageHeader() {
<div className={styles.buttons}>
<Link
className="button button--secondary button--lg"
to="/docs/intro">
快速开始
to="/docs/tutorial/usage">
快速上手
</Link>
</div>
</div>
Expand Down

0 comments on commit 2994be7

Please sign in to comment.