Skip to content

Merge pull request #5 from aulasoftwarelibre/auth-chapter-2 #12

Merge pull request #5 from aulasoftwarelibre/auth-chapter-2

Merge pull request #5 from aulasoftwarelibre/auth-chapter-2 #12

Workflow file for this run

name: Build documentation
on:
push:
branches: [main]
# Environment
env:
PYTHON_VERSION: 3.10.13
POETRY_VERSION: 1.6.1
jobs:
# Build and deploy documentation site
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout source form GitHub
uses: actions/checkout@v2
- name: Install Python runtime and dependencies
uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Run image
uses: abatilo/[email protected]
with:
poetry-version: ${{ env.POETRY_VERSION }}
- name: Install dependencies
run: |
poetry install
- name: Deploy
run: |
poetry run mkdocs gh-deploy --force