Skip to content

Commit 53cbdee

Browse files
committed
Fix path to build directory inside docs
1 parent 80e6503 commit 53cbdee

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ jobs:
3232
# Step 4: Build the documentation
3333
- name: Build Sphinx documentation
3434
run: |
35-
sphinx-build -b html docs/source docs/_build/html
35+
sphinx-build -b html docs/source docs/build/html
3636
3737
# Step 5: Deploy to GitHub Pages
3838
- name: Deploy to GitHub Pages
3939
uses: peaceiris/actions-gh-pages@v3
4040
with:
4141
github_token: ${{ secrets.GITHUB_TOKEN }}
42-
publish_dir: docs/_build/html
42+
publish_dir: docs/build/html

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ The `sqlite_manager` package streamlines SQLite database workflows by offering t
1919

2020
1. **Database Creation**:
2121
- Generate an SQLite database directly from a pandas DataFrame and a schema file.
22-
- Automate schema creation and data population, minimizing manual effort.
2322

2423
2. **Query Execution**:
2524
- Recursively execute SQL queries stored in directories on the database.

0 commit comments

Comments
 (0)