forked from chartjs/Chart.js
-
Notifications
You must be signed in to change notification settings - Fork 2
43 lines (39 loc) · 1017 Bytes
/
deploy-docs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# This workflow publishes new documentation to https://chartjs.org/docs/master after every commit
name: Deploy docs
on:
push:
branches:
- master
permissions:
contents: read
jobs:
correct_repository:
permissions:
contents: none
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@v4
- uses: pnpm/[email protected]
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 16
cache: pnpm
- name: Package & Deploy Docs
run: |
pnpm install
pnpm run build
./scripts/docs-config.sh "master"
pnpm run docs
pnpm pack
./scripts/deploy-docs.sh "master"
env:
GITHUB_TOKEN: ${{ secrets.GH_AUTH_TOKEN }}
GH_AUTH_EMAIL: ${{ secrets.GH_AUTH_EMAIL }}