-
Notifications
You must be signed in to change notification settings - Fork 159
43 lines (36 loc) · 1.21 KB
/
publish-fern-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
name: Publish Docs
on:
push:
branches:
- main
jobs:
run:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && contains(github.ref, 'refs/heads/main') && github.run_number > 1 }}
steps:
- name: Checkout aa-sdk
uses: actions/checkout@v4
- name: Download Alchemy Docs Repo
run: |
rm -rf docs-site && \
curl -L -f -H "Authorization: token ${{ secrets.DOCS_GITHUB_TOKEN }}" \
-o docs.tar.gz https://api.github.com/repos/alchemyplatform/docs/tarball/main && \
tar xzf docs.tar.gz && \
mv alchemyplatform-docs-* docs-site && \
rm docs.tar.gz
- name: Copy docs to docs-site/account-kit and cd into docs-site
run: |
mkdir -p docs-site/account-kit
cp -r docs/* docs-site/account-kit/
- name: Insert Account Kit docs.yml into docs-site/fern/docs.yml
run: |
cd docs-site
account-kit/scripts/insert-docs.sh
- name: Install Fern CLI
run: npm install -g fern-api
- name: Publish Docs
env:
FERN_TOKEN: ${{ secrets.FERN_TOKEN }}
run: |
cd docs-site
fern generate --docs --log-level debug