-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (52 loc) · 1.37 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Docs
on:
workflow_dispatch:
pull_request:
branches:
- 'changeset-release/**'
types:
- closed
concurrency: ${{ github.workflow }}-${{ github.ref }}
permissions: {}
jobs:
build:
if: |
github.repository == 'reuters-graphics/paparazzo' &&
((github.event_name == 'pull_request' && github.event.pull_request.merged == true) || github.event_name == 'workflow_dispatch')
permissions:
contents: write
pull-requests: write
name: Build docs
runs-on: ubuntu-latest
steps:
- id: checkout
name: Checkout Repo
uses: actions/checkout@v4
- id: pnpm
name: PNPM action setup
uses: pnpm/action-setup@v4
with:
version: 8
- id: setup
name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- id: install
name: Install dependencies
run: pnpm install
- id: build
name: Build package
run: pnpm run build:package
- id: docs
name: Build docs
run: pnpm run build:docs
- id: commit
name: Commit
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "Build docs"
git push