Skip to content

chore(deps): update dependency aws-cdk to v2.171.1 #1399

chore(deps): update dependency aws-cdk to v2.171.1

chore(deps): update dependency aws-cdk to v2.171.1 #1399

Workflow file for this run

name: Doc
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get install -y python3-sphinx pandoc
python -m pip install --upgrade pip
python -m pip install --upgrade poetry>=1.2.0
poetry install --with docs
- name: Build Sphinx doc
run: |
poetry run make -C docs html
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build/html