Make basic generator robust to caps in filename #387
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 All Documentation | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
compile_job: | |
name: publish_all | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/lasp/adamant:latest | |
options: --user root | |
steps: | |
- run: echo "Starting job triggered by a ${{ github.event_name }} event on a ${{ runner.os }} server hosted by GitHub." | |
- run: echo "Checking out ${{ github.repository }} on branch ${{ github.ref }}." | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Build all documentation | |
run: bash env/github_run.sh "redo publish" | |
- run: echo "Finished with status - ${{ job.status }}." | |
if: always() |