Files
website/.gitea/workflows/deploy.yaml
Roberto Musso 5ce8fdabe9
Some checks failed
Deploy HTML to Docker LXC / deploy (push) Failing after 3s
feat: new waitlist landing page with privacy & terms pages
- Scrollytelling landing page (GSAP ScrollTrigger, interactive compass, glassmorphism)
- Privacy policy (GDPR, local-first architecture, AI provider disclosure)
- Terms of service (EU law, beta program, data ownership)
- Deploy workflow updated to include all new files and assets
2026-04-11 01:48:07 +02:00

24 lines
654 B
YAML

name: Deploy HTML to Docker LXC
run-name: Deploying static site by ${{ github.actor }}
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest # Adjust if your runner uses a different label
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Copy site files to Docker LXC
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USER }}
key: ${{ secrets.SSH_KEY }}
source: "index.html,privacy.html,terms.html,assets/"
target: "/opt/adiuvai-website/html/"
overwrite: true