forked from refinedev/refine
-
Notifications
You must be signed in to change notification settings - Fork 0
87 lines (84 loc) · 2.89 KB
/
pull-request-doc.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: PR Documentation [synchronize]
on:
pull_request:
types:
- synchronize
- opened
- reopened
paths:
- "documentation/**"
jobs:
documentation:
if: github.repository_owner == 'refinedev'
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref }}-pr-doc
cancel-in-progress: true
strategy:
matrix:
node-version: [18.x]
name: Deploy Documentation Preview
steps:
- name: Workflow run cleanup action
uses: rokroskar/workflow-run-cleanup-action@v0.2.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v4
- name: Add key to allow access to repository
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
mkdir -p ~/.ssh
ssh-keyscan github.com >> ~/.ssh/known_hosts
echo "${{ secrets.GH_PAGES_DEPLOY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
cat <<EOT >> ~/.ssh/config
Host github.com
HostName github.com
IdentityFile ~/.ssh/id_rsa
EOT
- name: Install Package Dependencies
run: |
npm ci
npm run bootstrap:all
- name: Install Doc Dependencies
run: |
cd documentation
npm ci
- name: Wait for Netlify Deploy (Live Previews)
uses: probablyup/wait-for-netlify-action@3.2.0
id: waitForDeployment
continue-on-error: true
with:
site_id: ${{ secrets.NETLIFY_PREVIEW_SITE_ID }}
max_timeout: 1200
env:
NETLIFY_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
- name: output test
run: |
echo ${{ steps.waitForDeployment.outputs.url }}
- name: Build Documentation
run: |
cd documentation
LIVE_PREVIEW_URL=${{ steps.waitForDeployment.outputs.url }}/preview npm run build
- name: Deploy to Netlify
id: netlify-deploy
uses: nwtgck/actions-netlify@v1.2
with:
publish-dir: "./documentation/build"
github-token: ${{ secrets.PANKOD_BOT_TOKEN }}
deploy-message: "Deploy from GitHub Actions"
enable-pull-request-comment: false
overwrites-pull-request-comment: false
github-deployment-environment: "deploy-preview-website-${{ github.event.number }}"
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 15
- name: Check Existing Links in Documentation
if: steps.netlify-deploy.outputs.deploy-url
run: DEPLOY_URL=${{ steps.netlify-deploy.outputs.deploy-url }} SITEMAP_URL=https://refine.dev/sitemap.xml node ./.github/workflows/check-existing-doc-links.js