File tree Expand file tree Collapse file tree 1 file changed +0
-40
lines changed
Expand file tree Collapse file tree 1 file changed +0
-40
lines changed Original file line number Diff line number Diff line change 1- # name: Deploy MkDocs site to GitHub Pages
2-
3- # on:
4- # push:
5- # branches:
6- # - main
7-
8- # jobs:
9- # deploy:
10- # runs-on: ubuntu-latest
11-
12- # steps:
13- # # Checkout the repo
14- # - name: Checkout repo
15- # uses: actions/checkout@v3
16-
17- # # Set up Python environment
18- # - name: Set up Python
19- # uses: actions/setup-python@v4
20- # with:
21- # python-version: '3.x'
22-
23- # # Install MkDocs and Material theme
24- # - name: Install MkDocs & Material theme
25- # run: |
26- # pip install mkdocs-material mkdocs-jupyter
27-
28- # # Build the MkDocs site
29- # - name: Build the site
30- # run: |
31- # cd workshop
32- # mkdocs build
33- # touch site/.nojekyll # Disable Jekyll
34-
35- # # Deploy to GitHub Pages
36- # - name: Deploy to GitHub Pages
37- # uses: peaceiris/actions-gh-pages@v3
38- # with:
39- # github_token: ${{ secrets.GITHUB_TOKEN }}
40- # publish_dir: workshop/site
411
422name : Deploy MkDocs site to GitHub Pages
433
You can’t perform that action at this time.
0 commit comments