Skip to content

Commit

Permalink
feat: inclure lindex avec les documents
Browse files Browse the repository at this point in the history
  • Loading branch information
dhdaines committed Jul 5, 2024
1 parent 3f043f7 commit da3bddc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/analyse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ jobs:
- name: Extract
run: |
alexi -v extract -m download/index.json download/*.pdf
- name: Index
run: |
alexi -v index export
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
Expand Down
2 changes: 1 addition & 1 deletion alexi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def make_argparse() -> argparse.ArgumentParser:
"--outdir",
help="Repertoire destination pour l'index",
type=Path,
default="indexdir",
default="export/_idx",
)
index.add_argument("indir", help="Repertoire avec les fichiers extraits", type=Path)
index.set_defaults(func=index_main)
Expand Down

0 comments on commit da3bddc

Please sign in to comment.