You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
747 B
35 lines
747 B
4 weeks ago
|
name: Documentation
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- master
|
||
|
paths:
|
||
|
- 'docs/**/*'
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
paths:
|
||
|
- 'docs/**/*'
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- uses: actions/setup-node@v1
|
||
|
with:
|
||
|
node-version: 12
|
||
|
- name: build and deploy
|
||
|
if: github.event_name == 'pull_request' && github.event.pull_request.merged == 'true'
|
||
|
run: |
|
||
|
yarn
|
||
|
yarn docs
|
||
|
yarn docs:publish
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||
|
GITHUB_REPO: chancejs/chancejs
|
||
|
GIT_NAME: Travis CI
|
||
|
GIT_EMAIL: mail@victorquinn.ocm
|
||
|
GIT_SOURCE: _docpress
|