2022-04-08 02:44:13 +08:00
|
|
|
name: Publish Docs Deploy (Manual)
|
2021-10-31 13:40:45 +08:00
|
|
|
|
|
|
|
on: workflow_dispatch
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy-docs:
|
|
|
|
runs-on: ubuntu-latest
|
2022-05-10 19:24:16 +08:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node-version: [16.x]
|
|
|
|
|
2021-10-31 13:40:45 +08:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-07 10:52:16 +08:00
|
|
|
uses: actions/checkout@v3
|
2021-10-31 13:40:45 +08:00
|
|
|
|
|
|
|
- name: Setup pnpm
|
|
|
|
uses: pnpm/action-setup@v2
|
|
|
|
|
2022-05-10 19:24:16 +08:00
|
|
|
- name: Setup node
|
|
|
|
uses: actions/setup-node@v3
|
2022-02-21 16:11:17 +08:00
|
|
|
with:
|
2022-05-10 19:24:16 +08:00
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
cache: 'pnpm'
|
2022-02-21 16:11:17 +08:00
|
|
|
|
2021-10-31 13:40:45 +08:00
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm i --frozen-lockfile
|
|
|
|
|
|
|
|
- name: Init Crowdin token
|
|
|
|
run: pnpm run docs:crowdin-credentials
|
|
|
|
env:
|
|
|
|
CROWDIN_TOKEN: ${{secrets.CROWDIN_TOKEN}}
|
|
|
|
|
|
|
|
- name: Pull Crowdin translations
|
2022-05-23 22:28:36 +08:00
|
|
|
run: cd docs && pnpm exec crowdin download -l es-ES && pnpm exec crowdin download -l zh-CN
|
2021-10-31 13:40:45 +08:00
|
|
|
|
|
|
|
- name: Generate common locale
|
|
|
|
run: pnpm docs:gen-locale
|
|
|
|
|
|
|
|
- name: Install latest Element Plus
|
|
|
|
run: cd docs && pnpm i element-plus@latest
|
|
|
|
|
2022-04-08 14:17:44 +08:00
|
|
|
- name: Build Metadata
|
|
|
|
run: cd internal/metadata && pnpm build
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2021-10-31 13:40:45 +08:00
|
|
|
- name: Build website
|
|
|
|
run: pnpm docs:build
|
|
|
|
env:
|
|
|
|
DOC_ENV: production
|
|
|
|
|
|
|
|
- name: Deploy
|
2022-06-28 06:34:17 +08:00
|
|
|
uses: JamesIves/github-pages-deploy-action@v4.3.4
|
2021-10-31 13:40:45 +08:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
branch: gh-pages
|
|
|
|
folder: docs/.vitepress/dist
|
|
|
|
git-config-name: ElementPlusBot
|
|
|
|
git-config-email: hello@element-plus.org
|
|
|
|
commit-message: website deploy
|
|
|
|
|
2022-04-29 22:41:02 +08:00
|
|
|
- name: Deploy to vercel
|
2022-06-28 06:34:17 +08:00
|
|
|
uses: JamesIves/github-pages-deploy-action@v4.3.4
|
2022-04-29 22:41:02 +08:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.EP_BOT_TOKEN }}
|
|
|
|
branch: main
|
|
|
|
folder: docs/.vitepress/dist
|
|
|
|
repository-name: element-plus/vercel-publish
|
|
|
|
git-config-name: ElementPlusBot
|
|
|
|
git-config-email: hello@element-plus.org
|
|
|
|
|
2021-10-31 13:40:45 +08:00
|
|
|
- name: Sync
|
|
|
|
env:
|
|
|
|
TRIGGERSYNCURL: ${{ secrets.TRIGGERSYNCURL }}
|
2022-01-12 01:02:45 +08:00
|
|
|
run: curl -k "$TRIGGERSYNCURL"
|