-
Notifications
You must be signed in to change notification settings - Fork 2
40 lines (34 loc) · 995 Bytes
/
docs-deploy.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
name: Builds and deploy documentation
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build-and-deploy:
permissions:
contents: write
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: ./docs/.nvmrc
- name: Navigate to docs directory
run: cd docs
- name: Install Dependencies
run: npm install
working-directory: ./docs
- name: Build Project
run: npm run build
working-directory: ./docs
- name: Add CNAME for Custom Domain
run: echo "loculus.org" > ./docs/dist/CNAME
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/dist # Adjust if your build output directory is different