Build Docs #193
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: Build Docs | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| workflow_dispatch: {} | |
| jobs: | |
| trigger-docs-update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger documentation generation | |
| env: | |
| GH_TOKEN: ${{ secrets.DOCS_REPO_TOKEN }} | |
| run: | | |
| gh workflow run generate-api-docs-community-contracts.yml \ | |
| --repo OpenZeppelin/docs \ | |
| --field tag_name="${{ github.sha }}" \ | |
| --field trigger_type="commit" |