feat: add 5080 series products to various canadian retailers (#3215) #525
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: Documentation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build_deploy: | |
| name: Build and publish documentation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Setup Python | |
| uses: actions/setup-python@v3 | |
| with: | |
| python-version: 3.x | |
| - name: Install Python packages | |
| run: pip install mkdocs-material mkdocs-git-revision-date-plugin mkdocs-macros-plugin | |
| - name: Build and publish documentation | |
| run: mkdocs gh-deploy --force |