Enhance demo workflow by adding step names for clarity and installing generated files
This commit is contained in:
parent
087875015c
commit
65c88dbc73
2 changed files with 6 additions and 3 deletions
|
@ -6,10 +6,13 @@ jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: self-hosted
|
runs-on: self-hosted
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
- name: Initialize virtual environment
|
- name: Initialize virtual environment
|
||||||
run: /usr/bin/python -m venv .env
|
run: /usr/bin/python -m venv .env
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: ./.env/bin/pip install mystmd
|
run: ./.env/bin/pip install mystmd
|
||||||
- name: Build static HTML
|
- name: Build static HTML
|
||||||
run: ./.env/bin/myst build --html
|
run: ./.env/bin/myst build --html
|
||||||
|
- name: Install generated files
|
||||||
|
run: cp -r _build/html /data/srv/fogejo-runner/cours4.0
|
2
myst.yml
2
myst.yml
|
@ -25,4 +25,4 @@ site:
|
||||||
favicon: logo.svg
|
favicon: logo.svg
|
||||||
logo: logo.svg
|
logo: logo.svg
|
||||||
folders: true
|
folders: true
|
||||||
hide_footer_links: true
|
hide_footer_links: true
|
Loading…
Add table
Add a link
Reference in a new issue