Docs update AWS Pi-Week Talk Amazon S3 strong consistency link (#916) #66
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: Publish Docs | |
| on: | |
| push: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install pip | |
| run: python3 -m pip install --upgrade pip setuptools wheel | |
| - name: Install MkDocs | |
| run: | | |
| pip install mkdocs | |
| pip install mkdocs-macros-plugin | |
| pip install mkdocs-material | |
| - name: MkDocs build | |
| working-directory: ./Docs | |
| run: mkdocs build | |
| - name: MkDocs deploy | |
| working-directory: ./Docs | |
| run: mkdocs gh-deploy --force |