Skip to content

Commit

Permalink
Create mkdocs-deploy.yml
Browse files Browse the repository at this point in the history
Setting up basics of mkdocs action
  • Loading branch information
leokim-l authored Nov 14, 2024
1 parent 62f563b commit e8581ad
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/mkdocs-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: mkdocs-generation
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3

- name: Set up python 3
uses: actions/setup-python@v5
with:
python-version: 3.x

- name: Install Poetry
uses: snok/[email protected]

- name: Install dependencies
run: poetry install --no-interaction

- run: mkdocs gh-deploy --force

0 comments on commit e8581ad

Please sign in to comment.