CI/CD Pipelines
Integrate Boottify with your CI/CD workflow using GitHub Actions or webhooks.
GitHub Actions
Use the Boottify deploy action in your workflow:
name: Deploy
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Deploy to Boottify
uses: boottify/deploy-action@v1
with:
app-id: your-app-id
token: ${{ secrets.BOOTTIFY_TOKEN }}
Custom Webhooks
Trigger deployments from any CI/CD system using the deploy webhook endpoint.