ADD: cert path

This commit is contained in:
Germann Elsa Sylvia
2025-05-22 09:57:38 +02:00
committed by germann_e
parent 0c50372755
commit 4a38de06cb

View File

@ -14,6 +14,8 @@ jobs:
uses: actions/checkout@v4
- name: Check modules
run: |
export REQUESTS_CA_BUNDLE=/etc/ssl/cert.pem
export SSL_CERT_FILE=/etc/ssl/cert.pem
source /opt/psi/config/profile.bash
module load Python/3.9.10
export COLUMNS=9000
@ -24,20 +26,16 @@ jobs:
python3 pmodules_tools/pmodules_tools.py --deps-check
- name: Make pages
run: |
export REQUESTS_CA_BUNDLE=/etc/ssl/cert.pem
export SSL_CERT_FILE=/etc/ssl/cert.pem
source /opt/psi/config/profile.bash
module load Python/3.9.10 asciidoctor/2.0.23
source pm_tools_venv/bin/activate
mkdir public
python3 pmodules_tools/pmodules_tools.py --db-check
# render all files in doc and its sub-directories with extension .adoc to HTML
>
asciidoctor -a data-uri \
-a reproducible \
-a icons=font \
-a source-highlighter=Pygments \
-a experimental \
-a stylesheet=./stylesheets/readthedocs.css \
-D public \
-R doc '**/*.adoc'
>
asciidoctor -a data-uri -a reproducible -a icons=font -a source-highlighter=Pygments -a experimental -a stylesheet=./stylesheets/readthedocs.css -D public -R doc '**/*.adoc'
- name: Configure Git
run: |