Skip to main content

Deploy

50% cheaper than Railway

Git push → live in seconds

Connect your GitHub repo and push to deploy. Every push triggers a build and deploy — staging and production. Full CI/CD pipeline, auto SSL certificates, custom domains, environment variables, and health checks. Powered by our dedicated infra, no shared cloud shenanigans.

Overview
Pricing
Usage
Docs
Examples
GitHub Actions Deploy.github/workflows/deploy.yml
yaml
name: Deploy
on:
  push:
    branches: [main]
jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Deploy to Sylphx
        run: |
          curl -sf "https://cloud.sylphx.com/api/deploy?uuid=${{ secrets.SYLPHX_APP_UUID }}" \
            -H "Authorization: Bearer ${{ secrets.SYLPHX_TOKEN }}"

Looking for more examples?

View on GitHub