0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-12-22 18:25:46 +00:00

Docs workflow: Set working directory after checkout

This commit is contained in:
Trigus42 2024-10-19 17:22:28 +02:00
parent 561e9379c1
commit 91fb9c3446

View file

@ -27,10 +27,6 @@ jobs:
build-docs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: docs
steps:
- name: Print inputs
if: github.event_name == 'workflow_dispatch'
@ -50,14 +46,17 @@ jobs:
cache: 'pip'
- run: pip install -r requirements.txt
working-directory: docs
- name: Build Docs and Capture Warnings
id: build_docs
working-directory: docs
run: |
mkdocs build 2>&1 | tee mkdocs-output.log
- name: Annotate Warnings and Errors
if: always() && steps.build_docs.outcome != 'skipped'
working-directory: docs
run: |
warnings=$(grep -i 'WARNING' mkdocs-output.log || true)
errors=$(grep -i 'ERROR' mkdocs-output.log || true)
@ -81,4 +80,5 @@ jobs:
- name: Deploy to GitHub Pages
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' && github.event.inputs.deploy == 'true'
working-directory: docs
run: mkdocs gh-deploy --force