We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b22883a commit c220890Copy full SHA for c220890
1 file changed
.github/workflows/deploy.yaml
@@ -8,4 +8,25 @@ env:
8
jobs:
9
deploy:
10
runs-on: ubuntu-latest
11
- steps: [uses: fastai/workflows/quarto-ghp3@master]
+ 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
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