Skip to content

Commit

Permalink
Merge pull request #19 from Nadwey/master
Browse files Browse the repository at this point in the history
Properly deploy docs
  • Loading branch information
Jsinco authored Aug 12, 2024
2 parents 21a04dc + 4d6da1d commit 6217765
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
47 changes: 47 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Build and deploy docs

on:
push:
branches: [master]
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
build-and-deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.url }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Pages
uses: actions/configure-pages@v5

- uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Install mkdocs
run: pip install mkdocs mkdocs-material mkdocs-open-in-new-tab mkdocs-minify-plugin

- name: Build docs
run: mkdocs build

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./site

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
1 change: 0 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ repo_url: https://github.com/Jsinco/BreweryX

theme:
name: material
custom_dir: overrides
palette:
scheme: slate
primary: indigo
Expand Down

0 comments on commit 6217765

Please sign in to comment.