Dateien nach "/" hochladen

This commit is contained in:
2026-02-11 11:56:58 +01:00
commit 0f54048ace
3 changed files with 896 additions and 0 deletions

12
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,12 @@
pages:
stage: deploy
image: alpine:latest
script:
- apk add --no-cache rsync
- mkdir -p public
- rsync -av --delete --exclude public --exclude .git --exclude .gitlab-ci.yml ./ public/
artifacts:
paths:
- public
only:
- main