Skip to content

Commit

Permalink
Add logging step to documentation build workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
ProjectSynchro committed Apr 15, 2024
1 parent f1d592a commit 39b2e37
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/website_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ jobs:
meson setup build . -Dexecutable=disabled
meson compile -C build
working-directory: ${{ github.workspace }}/staging
- name: "Upload Build Log"
uses: actions/upload-artifact@v1
if: ${{ success() || steps.build.outcome == 'failure' }}
with:
name: meson-build-log
path: ${{ github.workspace }}/staging/build/meson-logs/meson-log.txt
- name: "Build Manual PDF"
run: |
OLDHOME="$HOME"
Expand Down

0 comments on commit 39b2e37

Please sign in to comment.