mirror of
https://github.com/DS4SD/docling.git
synced 2025-12-08 20:58:11 +00:00
docs: add use docling (#150)
--------- Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> Signed-off-by: Panos Vagenas <35837085+vagenas@users.noreply.github.com> Co-authored-by: Panos Vagenas <35837085+vagenas@users.noreply.github.com>
This commit is contained in:
17
.github/workflows/cd.yml
vendored
17
.github/workflows/cd.yml
vendored
@@ -10,19 +10,14 @@ env:
|
||||
PYTHON_KEYRING_BACKEND: keyring.backends.null.Keyring
|
||||
|
||||
jobs:
|
||||
# To be enabled when we add docs
|
||||
# docs:
|
||||
# permissions:
|
||||
# contents: write
|
||||
# runs-on: ubuntu-latest
|
||||
# steps:
|
||||
# - uses: actions/checkout@v3
|
||||
# - uses: ./.github/actions/setup-poetry
|
||||
# - name: Build and push docs
|
||||
# run: poetry run mkdocs gh-deploy --force
|
||||
|
||||
code-checks:
|
||||
uses: ./.github/workflows/checks.yml
|
||||
build-deploy-docs:
|
||||
uses: ./.github/workflows/docs.yml
|
||||
with:
|
||||
deploy: true
|
||||
permissions:
|
||||
contents: write
|
||||
pre-release-check:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
|
||||
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
@@ -16,13 +16,7 @@ env:
|
||||
jobs:
|
||||
code-checks:
|
||||
uses: ./.github/workflows/checks.yml
|
||||
|
||||
# To enable when we add the ./docs
|
||||
# build-docs:
|
||||
# runs-on: ubuntu-latest
|
||||
# steps:
|
||||
# - uses: actions/checkout@v3
|
||||
# - uses: ./.github/actions/setup-poetry
|
||||
# - name: Build docs
|
||||
# run: poetry run mkdocs build --verbose --clean
|
||||
|
||||
build-docs:
|
||||
uses: ./.github/workflows/docs.yml
|
||||
with:
|
||||
deploy: false
|
||||
|
||||
28
.github/workflows/docs.yml
vendored
Normal file
28
.github/workflows/docs.yml
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
deploy:
|
||||
type: boolean
|
||||
description: "If true, the docs will be deployed."
|
||||
default: false
|
||||
|
||||
jobs:
|
||||
run-docs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install poetry
|
||||
run: pipx install poetry==1.8.3
|
||||
shell: bash
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
cache: 'poetry'
|
||||
- name: Install dependencies
|
||||
run: poetry install --only docs
|
||||
shell: bash
|
||||
- name: Build docs
|
||||
run: poetry run mkdocs build --verbose --clean
|
||||
- name: Build and push docs
|
||||
if: inputs.deploy
|
||||
run: poetry run mkdocs gh-deploy --force
|
||||
|
||||
Reference in New Issue
Block a user