Added support for Avro Logical types (#678) #216
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 snapshot documentation on push to main | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| concurrency: | |
| group: pages-deployment | |
| cancel-in-progress: true | |
| jobs: | |
| deploy: | |
| if: github.actor != 'dependabot[bot]' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.9 | |
| - name: Install Dependencies | |
| run: | | |
| pip install mkdocs-material | |
| pip install mike | |
| pip install mkdocs-include-markdown-plugin | |
| pip install mkdocs-autorefs | |
| - name: Setup Docs Deploy | |
| run: | | |
| git config --global user.name "deploy SNAPSHOT docs" | |
| git config --global user.email "development@axual.com" | |
| - name: Build Docs Site | |
| id: deployment | |
| run: | | |
| mike deploy --push --update-aliases DEVELOPMENT |