Skip to content

Commit

Permalink
Add github workflow for mkdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
qiaojunfeng committed Feb 16, 2024
1 parent 7cf33db commit 1de82bb
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Publish docs via GitHub Pages
on:
push:
branches:
- master

jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Deploy docs
uses: mhausenblas/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1de82bb

Please sign in to comment.