changed workflow to build the files during deploy action
Deploy static site / deploy (push) Successful in 1m12s

This commit is contained in:
2026-04-23 14:28:05 +02:00
parent 032969aca4
commit 31232ec925
4 changed files with 13 additions and 54 deletions
+11
View File
@@ -12,6 +12,17 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: pip install pyyaml
- name: Build site
run: python build.py
- name: Install rsync
run: sudo apt-get update && sudo apt-get install -y rsync