-
Notifications
You must be signed in to change notification settings - Fork 12
77 lines (63 loc) · 2.05 KB
/
gh-pages.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
name: Push Github Pages
on:
push:
branches:
- master # Set a branch to deploy
workflow_dispatch:
pull_request:
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
submodules: recursive # Fetch the theme and its submodules
fetch-depth: 1 # the dependency of the themes have very long histories
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: lts/gallium
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install
run: npm install
- name: Install docsy dependencies
run: cd themes/docsy && npm install
- name: Build
run: npm run build
- name: Install GDAL
run: |
sudo apt-get update
sudo apt-get install -y gdal-bin
- name: Clone OSRD repository
run: |
git clone https://github.com/DGEXSolutions/osrd.git /tmp/osrd
mv /tmp/osrd/python/osrd_schemas ./
- name: Install poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: poetry
- name: Install osrd_schemas
working-directory: ./osrd_schemas
run: poetry install --no-interaction --no-root
- name: Generate infra and rolling_stock JSON schema
run: |
mkdir -p public/schemas
cd ./osrd_schemas
poetry run python -m osrd_schemas.infra > ../public/schemas/infra_schema.json
poetry run python -m osrd_schemas.rolling_stock > ../public/schemas/rolling_stock_schema.json
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
cname: osrd.fr