Skip to content

Commit

Permalink
Add GitHub workflow to build an deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterKale committed Aug 15, 2024
1 parent a90823e commit 3b07bb9
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: "Build and Deploy Docs"

on:
push:
branches: [ docs ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Install dependencies
run: |
pip install -r ./requirements.txt
- name: Build site
run: |
make html
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./build/html

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

0 comments on commit 3b07bb9

Please sign in to comment.