meet/.github/workflows/sync-to-production.yaml
2025-09-09 00:48:31 -06:00

17 lines
365 B
YAML

# .github/workflows/sync-to-production.yaml
name: Sync main to sandbox-production
on:
workflow_dispatch:
jobs:
sync:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: livekit-examples/sandbox-deploy-action@v1
with:
production_branch: 'sandbox-production'
token: ${{ secrets.GITHUB_TOKEN }}