Compare commits

...

3 Commits

Author SHA1 Message Date
Daniel S
c5165547b4 fix(admin-editor): rewrite editor.astro cleanly to eliminate AST compiler parsing error
All checks were successful
Production Build & Deploy / build-and-deploy (push) Successful in 56s
2026-08-08 23:44:33 +02:00
Daniel S
e82e1b3301 fix(cicd): update Gitea Action deploy.yml port mapping 8080:4321 and data volumes 2026-08-08 23:43:18 +02:00
Daniel S
6edc219a04 fix(admin-editor): resolve import syntax typo in editor.astro for SSR render 2026-08-08 23:42:28 +02:00
2 changed files with 392 additions and 147 deletions

View File

@@ -38,16 +38,20 @@ jobs:
# Schreibt die Docker Compose Datei sauber ohne Einrückung
cat << 'EOF' > docker-compose.yml
version: '3.8'
services:
website:
image: gitea.hephex.de/daniel/ndsolutionswebsite:latest
restart: always
ports:
- "8080:8080"
- "8080:4321"
environment:
- HOST=0.0.0.0
- PORT=4321
- DATA_DIR=/app/data
volumes:
- ./app/data:/app/data
EOF
echo "${{ secrets.REGISTRY_TOKEN }}" | docker login gitea.hephex.de -u "${{ secrets.REGISTRY_USER }}" --password-stdin
docker compose pull
docker compose up -d
docker image prune -f

File diff suppressed because one or more lines are too long