mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
Create docs.yml (#18)
This commit is contained in:
parent
b96c80edff
commit
81c3a5726a
1 changed files with 27 additions and 0 deletions
27
.github/workflows/docs.yml
vendored
Normal file
27
.github/workflows/docs.yml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
name: Deploy to Github Pages
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ "main" ]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install poetry
|
||||||
|
run: pipx install poetry
|
||||||
|
|
||||||
|
- name: Setup Python
|
||||||
|
uses: actions/setup-python@v3.1.3
|
||||||
|
with:
|
||||||
|
python-version: '3.x'
|
||||||
|
cache: poetry
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: poetry install
|
||||||
|
|
||||||
|
- name: Run gh-deploy
|
||||||
|
run: poetry run mkdocs gh-deploy
|
Loading…
Add table
Reference in a new issue