Skip to content

Commit 2f53ea8

Browse files
authored
Merge branch 'develop' into fix/partitions
2 parents abcc476 + 899fef3 commit 2f53ea8

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/reusable_publish_docs.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,9 @@ jobs:
5353
with:
5454
python-version: "3.12"
5555
cache: "poetry"
56-
- name: Install dependencies
57-
run: make dev
56+
- name: Install doc generation dependencies
57+
run: |
58+
pip install --require-hashes -r docs/requirements.txt
5859
- name: Git client setup
5960
run: |
6061
git config --global user.name Docs deploy
@@ -74,6 +75,13 @@ jobs:
7475
aws-region: us-east-1
7576
role-to-assume: ${{ secrets.AWS_DOCS_ROLE_ARN }}
7677
mask-aws-account-id: true
78+
- name: Build docs
79+
env:
80+
VERSION: ${{ inputs.version }}
81+
ALIAS: ${{ inputs.alias }}
82+
run: |
83+
rm -rf site
84+
mkdocs build
7785
- name: Deploy Docs (Version)
7886
env:
7987
VERSION: ${{ inputs.version }}

0 commit comments

Comments
 (0)