diff options
author | 2024-08-09 15:43:10 +0100 | |
---|---|---|
committer | 2024-08-09 15:43:10 +0100 | |
commit | f7486f4b3fe7d02e6fc62ed799712adb6cfa1b19 (patch) | |
tree | a2036d185328dc39500c35445b4cd3ce3c9ab19c /.github | |
parent | Update docs publish job (diff) |
Ensure taskipy is installed in CI
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/docs.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/lint-docs.yaml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 5eb481b..1962c1e 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -44,7 +44,7 @@ jobs: uses: HassanAbouelela/actions/setup-python@setup-python_v1.6.0 with: python_version: "3.12" - install_args: --only docs + install_args: --with docs - name: Build docs run: poetry run mkdocs build-docs - name: Upload artifact diff --git a/.github/workflows/lint-docs.yaml b/.github/workflows/lint-docs.yaml index eceee94..e7406b8 100644 --- a/.github/workflows/lint-docs.yaml +++ b/.github/workflows/lint-docs.yaml @@ -14,6 +14,6 @@ jobs: uses: HassanAbouelela/actions/setup-python@setup-python_v1.6.0 with: python_version: "3.12" - install_args: --only docs + install_args: --with docs - name: Build docs run: poetry run task build-docs |