We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88b0817 commit dea272fCopy full SHA for dea272f
.github/workflows/python_docs.yml
.github/workflows/pythonpackage.yml
@@ -40,3 +40,26 @@ jobs:
40
run: |
41
make test
42
working-directory: ./python/
43
+ docs:
44
+ runs-on: ubuntu-latest
45
+ defaults:
46
+ run:
47
+ working-directory: ./python/
48
+ steps:
49
+ - uses: actions/checkout@v1
50
+ - name: Set up Python
51
+ uses: actions/setup-python@v1
52
+ with:
53
+ python-version: "3.8"
54
+ - name: Install dependencies
55
+ run: |
56
+ python -m pip install --upgrade pip
57
+ make dev
58
+ - name: build docs
59
60
+ make docs
61
+ - name: deploy docs
62
+ uses: peaceiris/actions-gh-pages@v3
63
64
+ github_token: ${{ secrets.GITHUB_TOKEN }}
65
+ publish_dir: docs/aws_lambda_powertools/
0 commit comments