[RM Ch2] To pass Action fail #91
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: "Pull Request Docs Check" | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Install prerequisites | |
run: | | |
sudo apt-get --allow-releaseinfo-change update -y && sudo apt-get install -y tox pandoc | |
- name: Building RM in HTML | |
run: | | |
cd doc/ref_model | |
echo "---------------------------------------------------------------------------------------" | |
echo "---------------------------------- Building RM in HTML --------------------------------" | |
echo "---------------------------------------------------------------------------------------" | |
tox -e docs | |
echo "Building RM in html was successful! " | |
- name: Store html build result | |
uses: actions/upload-artifact@v4 | |
with: | |
name: rm-html | |
path: | | |
doc/ref_model/build | |
- name: Building RM in GSMA doc | |
run: | | |
cd doc/ref_model/ | |
echo "---------------------------------------------------------------------------------------" | |
echo "---------------------------------- Building GSMA doc ----------------------------------" | |
echo "---------------------------------------------------------------------------------------" | |
pwd | |
cat ./tox.ini | |
tox -e gsma | |
echo "Building GSMA doc was successful! " | |
- name: Store GSMA doc build result | |
uses: actions/upload-artifact@v4 | |
with: | |
name: rm-gsma-doc | |
path: | | |
doc/ref_model/gsma/rm.docx | |