Skip to content

build(deps): bump cfn-lint from 1.25.1 to 1.33.2 #97

build(deps): bump cfn-lint from 1.25.1 to 1.33.2

build(deps): bump cfn-lint from 1.25.1 to 1.33.2 #97

Workflow file for this run

name: deploy docs
on:
push:
branches:
- main
jobs:
deploy_docs:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install -r requirements.txt
pip install .
- name: Build docs
run: sphinx-build -b html docs public
- name: Publish docs
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public