Skip to content

EuroPython 2017 presentation #5

EuroPython 2017 presentation

EuroPython 2017 presentation #5

Workflow file for this run

name: Deploy Blog to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies using Poetry
run: |
pip install poetry
poetry install
- name: Deploy to GitHub Pages
run: poetry run mkdocs gh-deploy --force
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}