Skip to content

Commit

Permalink
adding github automatic deployment yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyashguptas committed Nov 13, 2024
1 parent 0b341b4 commit 36de28e
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: deploy-book

on:
push:
branches:
- main

jobs:
deploy-book:
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
steps:
- uses: actions/checkout@v3

- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11

- name: Install dependencies
run: |
pip install -r requirements.txt
pip install jupyter-book
- name: Build the book
run: |
jupyter-book build .
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: "_build/html"

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 36de28e

Please sign in to comment.