Skip to content

[RM Ch2] To pass Action fail #97

[RM Ch2] To pass Action fail

[RM Ch2] To pass Action fail #97

Workflow file for this run

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