Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy-api-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
TAG_VERSION=$(node -p "require('./package.json').version")
fi
echo "Resolved ducpy version: $TAG_VERSION"
uv run sphinx-build -D version="$TAG_VERSION" -D release="$TAG_VERSION" -M html . _build
uv run sphinx-build -b html -D version="$TAG_VERSION" -D release="$TAG_VERSION" . _build/html
working-directory: packages/ducpy/docs

- name: Stage Python API Docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Node
uses: actions/setup-node@v6
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
needs_wasm: ${{ steps.check.outputs.needs_wasm }}
needs_python: ${{ steps.check.outputs.needs_python }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
if: needs.release-check.outputs.any_release == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -299,7 +299,7 @@ jobs:
name: Next.js Docs Site Build Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-duc2pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
group: release-duc2pdf
cancel-in-progress: false
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ github.ref_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-ducjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
group: release-ducjs
cancel-in-progress: false
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ github.ref_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-ducpdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
group: release-ducpdf
cancel-in-progress: false
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ github.ref_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-ducpy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
outputs:
release_status: ${{ steps.release.outputs.status }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ github.ref_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-ducrs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
group: release-ducrs
cancel-in-progress: false
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ github.ref_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-ducsvg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
group: release-ducsvg
cancel-in-progress: false
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ github.ref_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
ducsvg: ${{ steps.check.outputs.ducsvg }}
duc2pdf: ${{ steps.check.outputs.duc2pdf }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ github.ref_name }}
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-all-api-docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def main():
print(f" Resolved ducpy version: {py_ver}")
if ducpy_docs_dir.exists():
subprocess.run(
["uv", "run", "--with", "sphinx", "--with", "furo", "--with", "sphinx-autoapi", "sphinx-build", "-D", f"version={py_ver}", "-D", f"release={py_ver}", "-M", "html", ".", "_build"],
["uv", "run", "--with", "sphinx", "--with", "furo", "--with", "sphinx-autoapi", "sphinx-build", "-b", "html", "-D", f"version={py_ver}", "-D", f"release={py_ver}", ".", "_build/html"],
cwd=ducpy_docs_dir,
check=False
)
Expand Down