Update CI build routine #15
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
on: | |
push: | |
branches: | |
- master | |
- v1.11_RC | |
jobs: | |
doc_build_job: | |
runs-on: ubuntu-latest | |
# This project MUST be given permission to use the image blow. at | |
# Package settings-> Manage action access of the project hosting the | |
# package | |
# Your project MUSTT contain empty .nojekyll file. Github Pages will | |
# discard everything starting with '_' i.e. the stylefiles. | |
container: 'ghcr.io/thesystemdevelopmentkit/thesdktestimage:latest' | |
name: Build documentation | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Documentation builder action | |
run: cd doc && make html && cd .. |