mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-03 07:14:38 +03:00
16 lines
349 B
YAML
16 lines
349 B
YAML
|
name: CD deply main
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
jobs:
|
||
|
deploy-main:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Repository Dispatch
|
||
|
uses: peter-evans/repository-dispatch@v2
|
||
|
with:
|
||
|
token: ${{ secrets.TWENTY_INFRA_TOKEN }}
|
||
|
repository: twentyhq/twenty-infra
|
||
|
event-type: auto-deploy-main
|