From 72399f7755315794ca435c61c0e00baf16a12bdc Mon Sep 17 00:00:00 2001 From: Elke Zimoch Date: Mon, 1 Jun 2026 10:18:06 +0200 Subject: [PATCH] playing with workflow --- .gitea/workflows/deploy-pages.yml | 24 ++++-------------------- 1 file changed, 4 insertions(+), 20 deletions(-) diff --git a/.gitea/workflows/deploy-pages.yml b/.gitea/workflows/deploy-pages.yml index 30ea3286..301cea5e 100644 --- a/.gitea/workflows/deploy-pages.yml +++ b/.gitea/workflows/deploy-pages.yml @@ -12,25 +12,13 @@ jobs: container: image: gitea.psi.ch/images/alpine-zensical steps: - - name: Install node - run: | - apt-get update - apt-get install -y nodejs git - - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: docs - - name: Verify Python version - run: pip3 install mkdocs-material mkdocs-glightbox - - - name: copy config - run: | - mv docs/.git . - mv docs/mkdocs.yml . - - name: Build Documentation - run: mkdocs build --site-dir public + - name: Build page + run: /opt/python-env/bin/zensical build - name: Configure Git run: | @@ -39,14 +27,10 @@ jobs: - name: Push to gitea-pages branch run: | - # pwd - # ls -la - # mkdir deploy - # cd deploy git checkout --orphan gitea-pages git reset --hard mv public/* . git add . - git commit -m "Deploy site" + git commit -m "Update site - $(date)" git push -f https://${{secrets.GITHUB_TOKEN}}@gitea.psi.ch/Controls/gitea-pages.git gitea-pages