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.
2 parents abcc476 + 899fef3 commit 2f53ea8Copy full SHA for 2f53ea8
.github/workflows/reusable_publish_docs.yml
@@ -53,8 +53,9 @@ jobs:
53
with:
54
python-version: "3.12"
55
cache: "poetry"
56
- - name: Install dependencies
57
- run: make dev
+ - name: Install doc generation dependencies
+ run: |
58
+ pip install --require-hashes -r docs/requirements.txt
59
- name: Git client setup
60
run: |
61
git config --global user.name Docs deploy
@@ -74,6 +75,13 @@ jobs:
74
75
aws-region: us-east-1
76
role-to-assume: ${{ secrets.AWS_DOCS_ROLE_ARN }}
77
mask-aws-account-id: true
78
+ - name: Build docs
79
+ env:
80
+ VERSION: ${{ inputs.version }}
81
+ ALIAS: ${{ inputs.alias }}
82
83
+ rm -rf site
84
+ mkdocs build
85
- name: Deploy Docs (Version)
86
env:
87
VERSION: ${{ inputs.version }}
0 commit comments