Skip to content

Commit

Permalink
Build docs pages
Browse files Browse the repository at this point in the history
  • Loading branch information
kiootic committed Oct 10, 2023
1 parent b604c6f commit 2cef968
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 1 deletion.
File renamed without changes.
43 changes: 43 additions & 0 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Deploy docs

on:
push:
branches: [main]

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

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v3
- run: |
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.30/mdbook-v0.4.30-x86_64-unknown-linux-gnu.tar.gz | tar xz
sudo mv mdbook /usr/bin/mdbook
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- run: make docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./book

deploy:
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release
on:
push:
tags:
- '*'
- "*"

permissions:
contents: write
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.PHONY: docs
docs:
mdbook build

.PHONY: migration
migration:
ifndef NAME
Expand Down

0 comments on commit 2cef968

Please sign in to comment.