Skip to content

Editoast error management #976

Editoast error management

Editoast error management #976

Workflow file for this run

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: 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/osrd-project/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