diff --git a/.github/workflows/index-docs.yml b/.github/workflows/index-docs.yml index 7c1ffebea..a2ce05b1e 100644 --- a/.github/workflows/index-docs.yml +++ b/.github/workflows/index-docs.yml @@ -7,7 +7,7 @@ on: types: - completed branches: [master] - + # Manual trigger workflow_dispatch: inputs: @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest # Only run if the triggering workflow succeeded, or if manually triggered if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} - + steps: - name: Checkout repository uses: actions/checkout@v4 @@ -43,6 +43,11 @@ jobs: node-version: '22' cache: 'npm' + - name: Install Pandoc + run: | + sudo apt-get update + sudo apt-get install -y pandoc + - name: Install dependencies run: npm ci