-
Notifications
You must be signed in to change notification settings - Fork 159
61 lines (52 loc) · 2.04 KB
/
preview-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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Generate Fern Docs Preview
on:
pull_request:
branches:
- main
jobs:
preview:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
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: Generate preview URL
id: generate-docs
env:
FERN_TOKEN: ${{ secrets.FERN_TOKEN }}
run: |
cd docs-site
OUTPUT=$(fern generate --docs --preview 2>&1) || true
echo "$OUTPUT"
URL=$(echo "$OUTPUT" | grep -oP 'Published docs to \K.*(?= \()')
echo "preview_url=$URL" >> $GITHUB_OUTPUT
- name: Comment Preview URL in PR
uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '## 🌿 Documentation Preview\n\n| Name | Preview | Updated (UTC) |\n| :--- | :------ | :------ |\n| **Alchemy Docs** | [🔗 Visit Preview](${{ steps.generate-docs.outputs.preview_url }}) | ' + new Date().toLocaleString('en-US', { month: 'short', day: 'numeric', year: 'numeric', hour: 'numeric', minute: '2-digit', hour12: true }) + ' |\n\n>'
});