Skip to content

Commit

Permalink
feat(ci): deploy to GH pages
Browse files Browse the repository at this point in the history
  • Loading branch information
saibotk committed Jul 4, 2024
1 parent fe29342 commit 9768a2d
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: Build & Deploy to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:

permissions: {}

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
- run: pip install -r requirements.txt
- run: mkdocs build
- uses: actions/upload-pages-artifact@v3
with:
path: "site"

deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 9768a2d

Please sign in to comment.