forked from thoughtworks/HeartBeat
-
Notifications
You must be signed in to change notification settings - Fork 15
37 lines (34 loc) · 864 Bytes
/
Docs.yaml
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
name: Docs
on:
push:
branches:
- main
workflow_dispatch:
defaults:
run:
working-directory: ./docs
jobs:
deploy:
runs-on: ubuntu-latest
if: ${{ contains(github.event.head_commit.message, '[docs]') }}
steps:
- uses: actions/checkout@v4
- name: Use lts Node.js
uses: actions/setup-node@v4
with:
node-version: latest
- name: Install & Lint
run: |
npm install -g pnpm
pnpm install --no-frozen-lockfile
pnpm lint
- name: Build docs
run: pnpm run build
- name: Deploy to github pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/dist
publish_branch: gh-pages
- name: upload index to Algolia
run: pnpm run algolia