Updated SIFAC sorta

This commit is contained in:
641i130 2023-07-20 21:55:00 -05:00
commit 4f5d777881

29
mkdocs-build.txt Normal file
View file

@ -0,0 +1,29 @@
# build and deploy mkdocs to codeberg pages
# This assumes your code lives in one repo, and you have a <owner>/pages
# repo which will be used to host the built pages.
steps:
build-docs:
# build the docs in /docs with mkdocs and
# add the .domains file for codeberg pages
image: squidfunk/mkdocs-material
commands:
- mkdocs build -f ./mkdocs.yml -d docs_build
- git switch --orphan pages
- mv docs_build/* .
- echo -e 'carette.codeberg.page\npages.carette.codeberg.page' > .domains
deploy-docs:
# Push the resulting files to openfindata/pages
# to deploy
image: appleboy/drone-git-push
settings:
branch: main
remote: git@codeberg.org:carette/ll-hax-docs.git
force: true
commit: true
ssh_key:
# created using woodpecker cli with:
# woodpecker secret add -repository carette/ll-hax-docs \
# -name codeberg_push_from_ci_priv_key -value @<path_to_privkey_file>
from_secret: codeberg_push_from_ci_priv_key