17 lines
365 B
YAML
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 }}
|