Chart.js/.github/workflows/deploy-docs.yml
Oscar Dominguez 12d5e4c7e7
ci(workflow): add cache to workflows using actions/setup-node (#9757)
* ci(workflow): add 'npm' cache for actions/setup-node in .github/workflows

* style(workflows): restore single quotes and remove unnecessary 'null'
2021-10-16 22:18:11 +03:00

38 lines
903 B
YAML

# This workflow publishes new documentation to https://chartjs.org/docs/master after every commit
name: Deploy docs
on:
push:
branches:
- master
jobs:
correct_repository:
runs-on: ubuntu-latest
steps:
- name: fail on fork
if: github.repository_owner != 'chartjs'
run: exit 1
build:
needs: correct_repository
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '14.x'
cache: npm
- name: Package & Deploy Docs
run: |
npm ci
npm run build
./scripts/docs-config.sh "master"
npm run docs
npm pack
./scripts/deploy-docs.sh "master"
env:
GITHUB_TOKEN: ${{ secrets.GH_AUTH_TOKEN }}
GH_AUTH_EMAIL: ${{ secrets.GH_AUTH_EMAIL }}