File tree Expand file tree Collapse file tree 1 file changed +2
-22
lines changed Expand file tree Collapse file tree 1 file changed +2
-22
lines changed Original file line number Diff line number Diff line change 1- # .github/workflows/sync-main-to-sandbox-production.yml
2-
31name : Sync main to sandbox-production
42
53on :
6- # push:
7- # branches:
8- # - main
94 workflow_dispatch :
105
116permissions :
1712 runs-on : ubuntu-latest
1813
1914 steps :
20- - name : Checkout code
21- uses : actions/checkout@v4
22- with :
23- fetch-depth : 0 # Fetch all history so we can force push
24-
25- - name : Set up Git
26- run : |
27- git config --global user.name 'github-actions[bot]'
28- git config --global user.email 'github-actions[bot]@livekit.io'
29-
30- - name : Sync to sandbox-production
31- env :
32- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
33- run : |
34- git checkout sandbox-production || git checkout -b sandbox-production
35- git merge --strategy-option theirs main
36- git push origin sandbox-production
15+ - name : Sync main to production branch and increment version
16+ uses : livekit-examples/sandbox-deploy-action
You can’t perform that action at this time.
0 commit comments