This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Téléchargement et analyse des règlements d'urbanisme | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install torch --index-url https://download.pytorch.org/whl/cpu | |
python3 -m pip install -e . | |
- name: Cache downloads | |
id: cache-downloads | |
uses: actions/cache@v4 | |
with: | |
path: download/*.pdf | |
key: reglements-urbanisme | |
- name: Download | |
run: | | |
alexi -v download --exclude=Plan --exclude=/derogation \ | |
--exclude='\d-[aA]dopt' --exclude='Z-\d' \ | |
--exclude='-[rR]eso' | |
for d in download/*.pdf; do | |
bn=$(basename $d .pdf) | |
for dd in data/train data/dev data/test; do | |
if [ -e "${dd}/${bn}.csv" ]; then | |
cp "${dd}/${bn}.csv" download/ | |
fi | |
done | |
done | |
- name: Extract | |
run: | | |
alexi -v extract --segment-model alexi/models/rnn_crf.pt -m download/index.json download/*.pdf | |
- name: Index | |
run: | | |
alexi -v index export | |
- name: Setup Pages | |
uses: actions/configure-pages@v5 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: export/ | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |