Some checks failed
Deploy HTML to Docker LXC / deploy (push) Failing after 3s
- 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
24 lines
654 B
YAML
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 |