element-plus/.github/workflows/master-deploy.yml
三咲智子 f9e192535f
refactor: replace yarn with pnpm (#3571)
* refactor: replace yarn with pnpm

* chore: install pnpm

* chore: disable cache

* ignore pnpm-lock.yaml

* resolve deps

* setup pnpm
2021-09-23 08:12:37 +08:00

63 lines
1.5 KiB
YAML

name: Deploy Doc Website
on:
push:
branches:
- master
jobs:
master-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 6.15.1
- name: Install dependencies
run: pnpm bootstrap
- name: Fetch Crowdin token for pulling languages
run: pnpm docs:crowdin
env:
CROWDIN_TOKEN: ${{secrets.CROWDIN_TOKEN}}
- name: Pull Crowdin translations
run: cd docs && pnpx crowdin download
- name: Generate common locale
run: pnpm docs:gen-locale
- name: Build website
run: pnpm docs:build
env:
DOC_ENV: production
# - name: Build Indices
# run: pnpm build:indices
# env:
# ALGOLIA_KEY: ${{secrets.ALGOLIA_KEY}}
- name: Deploy
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_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
- name: Sync
env:
TRIGGERSYNCURL: ${{ secrets.TRIGGERSYNCURL }}
run: curl "$TRIGGERSYNCURL"