chore(release): prepare v0.1.0-beta.3 #138
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
| # This workflow goes in the Rezi repo at .github/workflows/docs-dispatch.yml | |
| # It triggers the website repo to sync docs and staged API reference output. | |
| # The website workflow pushes directly to its main branch, so no PR is opened. | |
| name: Dispatch Docs Update | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'docs/**' | |
| - 'mkdocs.yml' | |
| - 'packages/**' | |
| - 'typedoc.json' | |
| - 'package.json' | |
| - 'package-lock.json' | |
| - 'scripts/docs.sh' | |
| jobs: | |
| dispatch: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Dispatch to website repo | |
| uses: peter-evans/repository-dispatch@v3 | |
| with: | |
| token: ${{ secrets.WEBSITE_DISPATCH_TOKEN }} | |
| repository: RtlZeroMemory/rezitui.dev | |
| event-type: docs-update |