Merge pull request #2567 from devitocodes/fix-reconstruction #265
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: main triggers | |
| on: | |
| push: | |
| branches: | |
| - main # Push events on main branch | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Trigger doc build | |
| uses: peter-evans/repository-dispatch@v2 | |
| with: | |
| token: ${{ secrets.DEPLOY_DOC_PAT }} | |
| repository: devitocodes/devitoproject.org | |
| event-type: deploy-docs | |
| - name: Trigger pro submodule update | |
| uses: peter-evans/repository-dispatch@v2 | |
| with: | |
| token: ${{ secrets.PRO_SUBMODULE }} | |
| repository: devitocodespro/devitopro | |
| event-type: update-submodule |