Remove diagnostics #44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Build Documentation" | |
on: [push, pull_request, delete] | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: usnistgov/NISTtheDocs2Death@main | |
with: | |
docs-folder: docs | |
pre-build-command: > | |
which git | |
|| ( | |
( | |
apt-get -yq update | |
&& apt-get -yq install git | |
&& rm -rf /var/lib/apt/lists/* | |
) | |
|| ( | |
apk update --no-cache | |
&& apk add --no-cache git | |
) | |
) | |
&& git config --global --add safe.directory /github/workspace | |
formats: |- | |
epub | |