Files
cv-site/.github/workflows
juanatsap 295a9948f7 fix: PDF tests data file loading and Chrome installation in CI
- Add findDataFile() helper to search up directory tree for data files
- Fixes tests running from subdirectories (internal/handlers)
- Install Chrome in GitHub Actions for PDF generation tests

This resolves test failures that have existed since PDF tests were introduced:
- Error: 'open data/cv-es.json: no such file or directory'
- Error: 'chrome failed to start'

Tests now properly locate data files from any working directory and
have Chrome available for PDF generation in CI environment.
2025-11-20 13:44:31 +00:00
..
2025-10-31 11:06:38 +00:00

GitHub Actions Workflows

deploy.yml - Automated Deployment

Trigger: Push to main branch or manual dispatch

What it does:

  1. SSH into your server
  2. git pull origin main
  3. sudo systemctl restart cv-server
  4. Verify deployment via health check

Required GitHub Secrets:

  • SSH_PRIVATE_KEY - SSH private key for server access
  • SSH_HOST - Server IP or domain
  • SSH_USER - SSH username

Optional GitHub Secrets:

  • SSH_PORT (default: 22)
  • SERVICE_NAME (default: cv-server)
  • REPO_PATH (default: /opt/cv-server)

Manual deployment: Go to Actions → Deploy CV Server → Run workflow

Setup guide: See GITHUB-ACTION-SETUP.md