Skip to content

Commit 590bbcd

Browse files
committed
chore: disable documentation workflow
we don't have bandwidth to maintain the documentation workflow at the moment so we're disabling it until we can get back to it.
1 parent 6376942 commit 590bbcd

File tree

1 file changed

+36
-36
lines changed

1 file changed

+36
-36
lines changed

.github/workflows/documentation.yml

+36-36
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
1-
name: GitHub Pages
1+
# name: GitHub Pages
22

3-
on:
4-
push:
5-
branches:
6-
- main
7-
pull_request:
3+
# on:
4+
# push:
5+
# branches:
6+
# - main
7+
# pull_request:
88

9-
jobs:
10-
deploy:
11-
runs-on: ubuntu-20.04
12-
defaults:
13-
run:
14-
working-directory: docs
15-
concurrency:
16-
group: ${{ github.workflow }}-${{ github.ref }}
17-
steps:
18-
- uses: actions/checkout@v3
9+
# jobs:
10+
# deploy:
11+
# runs-on: ubuntu-20.04
12+
# defaults:
13+
# run:
14+
# working-directory: docs
15+
# concurrency:
16+
# group: ${{ github.workflow }}-${{ github.ref }}
17+
# steps:
18+
# - uses: actions/checkout@v3
1919

20-
- name: Setup Node
21-
uses: actions/setup-node@v3
22-
with:
23-
node-version: '14'
20+
# - name: Setup Node
21+
# uses: actions/setup-node@v3
22+
# with:
23+
# node-version: '14'
2424

25-
- name: Cache dependencies
26-
uses: actions/cache@v3
27-
with:
28-
path: ~/.npm
29-
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
30-
restore-keys: |
31-
${{ runner.os }}-node-
25+
# - name: Cache dependencies
26+
# uses: actions/cache@v3
27+
# with:
28+
# path: ~/.npm
29+
# key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
30+
# restore-keys: |
31+
# ${{ runner.os }}-node-
3232

33-
- run: npm install
34-
- run: npm run build
35-
- run: npm run export
33+
# - run: npm install
34+
# - run: npm run build
35+
# - run: npm run export
3636

37-
- name: Deploy
38-
uses: peaceiris/actions-gh-pages@v3
39-
if: ${{ github.ref == 'refs/heads/main' }}
40-
with:
41-
github_token: ${{ secrets.GITHUB_TOKEN }}
42-
publish_dir: ./docs/out
37+
# - name: Deploy
38+
# uses: peaceiris/actions-gh-pages@v3
39+
# if: ${{ github.ref == 'refs/heads/main' }}
40+
# with:
41+
# github_token: ${{ secrets.GITHUB_TOKEN }}
42+
# publish_dir: ./docs/out

0 commit comments

Comments
 (0)