Skip to content

tugas linked unoder list dan OrderList #4

tugas linked unoder list dan OrderList

tugas linked unoder list dan OrderList #4

Workflow file for this run

name: Deploy Jupyter Book
on:
push:
branches: [main]
permissions:
contents: write
pages: write
jobs:
deploy-book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: pip install "jupyter-book==1.0.4.post1"
- name: Build the book
run: jupyter-book build .
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_build/html