Skip to content

Correction des "newlines" manquants en fin de fichier et des espaces en trop en fin de ligne #216

Correction des "newlines" manquants en fin de fichier et des espaces en trop en fin de ligne

Correction des "newlines" manquants en fin de fichier et des espaces en trop en fin de ligne #216

Workflow file for this run

name: Django-DSFR deploy documentation
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: 🐍 Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: 👷 Install Dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: 📄 Build docs
run: |
poetry run python manage.py migrate
poetry run python manage.py collectstatic --noinput
poetry run python manage.py distill-local docs --force
touch docs/django-dsfr/.nojekyll
- name: 🚀 Deploy Github Pages
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # <- Branche sur laquelle seront commités les fichiers
FOLDER: docs/django-dsfr/ # <- Dossier contenant notre documentation générée