Skip to content

Commit c220890

Browse files
committed
manual docs wf
1 parent b22883a commit c220890

1 file changed

Lines changed: 22 additions & 1 deletion

File tree

.github/workflows/deploy.yaml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,25 @@ env:
88
jobs:
99
deploy:
1010
runs-on: ubuntu-latest
11-
steps: [uses: fastai/workflows/quarto-ghp3@master]
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: actions/setup-python@v4
14+
with:
15+
python-version: 3.12
16+
- name: Install Dependencies and Build Docs
17+
shell: bash
18+
run: |
19+
set -ux
20+
python -m pip install --upgrade pip
21+
pip install -e ".[dev]"
22+
nbdev_docs
23+
- name: Deploy to GitHub Pages
24+
uses: peaceiris/actions-gh-pages@v3
25+
with:
26+
github_token: ${{ secrets.GITHUB_TOKEN }}
27+
force_orphan: true
28+
publish_dir: ./_docs
29+
user_name: github-actions[bot]
30+
user_email: 41898282+github-actions[bot]@users.noreply.github.com
31+
publish_branch: gh-pages
32+

0 commit comments

Comments
 (0)