mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 13:06:31 +00:00
d5d0e1036b
* docs: add docs * ignore dumi theme test * fix: error TS2717: Subsequent property declarations must have the same type. * update docs * deploy gh-pages * plugins docs * hash & cname * exportStatic * ssr * vercel * vercel * fix: deploy vercel * Delete vercel.json * docs * fix APP_DIST * on master branch
39 lines
956 B
YAML
39 lines
956 B
YAML
name: vercel
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v2.1.2
|
|
with:
|
|
node-version: '12.x'
|
|
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.npm
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-node-
|
|
|
|
- run: npm install
|
|
- run: npm run build-docs
|
|
|
|
- name: Deploy
|
|
uses: amondnet/vercel-action@v19
|
|
with:
|
|
vercel-token: ${{ secrets.VERCEL_TOKEN }} # Required
|
|
github-token: ${{ secrets.GITHUB_TOKEN }} #Optional
|
|
vercel-args: '--prod' #Optional
|
|
vercel-org-id: ${{ secrets.ORG_ID}} #Required
|
|
vercel-project-id: ${{ secrets.PROJECT_ID}} #Required
|
|
working-directory: ./dist
|