2023-04-18 14:36:12 +02:00
|
|
|
when:
|
|
|
|
event: push
|
|
|
|
branch: main
|
|
|
|
|
2024-05-06 11:14:55 +02:00
|
|
|
steps:
|
2023-04-18 14:36:12 +02:00
|
|
|
build:
|
|
|
|
image: python:3.9
|
|
|
|
commands:
|
|
|
|
- pip3 install -r requirements.txt
|
|
|
|
- mkdocs build --site-dir publish
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
image: node:18
|
|
|
|
secrets:
|
2024-05-06 11:14:55 +02:00
|
|
|
- NETLIFY_SITE_ID
|
2023-04-18 14:36:12 +02:00
|
|
|
- NETLIFY_AUTH_TOKEN
|
|
|
|
commands:
|
|
|
|
- npm install -D netlify-cli
|
|
|
|
- npx netlify deploy --site=$NETLIFY_SITE_ID --dir=publish --prod
|