From 65c88dbc73b571d40fa70bca90be70c08689e150 Mon Sep 17 00:00:00 2001
From: "Edgar P. Burkhart" <git@edgarpierre.fr>
Date: Sun, 9 Feb 2025 19:06:08 +0100
Subject: [PATCH] Enhance demo workflow by adding step names for clarity and
 installing generated files

---
 .forgejo/workflows/demo.yaml | 7 +++++--
 myst.yml                     | 2 +-
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml
index 801bdf4..cd47e55 100644
--- a/.forgejo/workflows/demo.yaml
+++ b/.forgejo/workflows/demo.yaml
@@ -6,10 +6,13 @@ jobs:
   test:
     runs-on: self-hosted
     steps:
-      - uses: actions/checkout@v4
+      - name: Checkout repository
+        uses: actions/checkout@v4
       - name: Initialize virtual environment
         run: /usr/bin/python -m venv .env
       - name: Install dependencies
         run: ./.env/bin/pip install mystmd
       - name: Build static HTML
-        run: ./.env/bin/myst build --html
\ No newline at end of file
+        run: ./.env/bin/myst build --html
+      - name: Install generated files
+        run: cp -r _build/html /data/srv/fogejo-runner/cours4.0
\ No newline at end of file
diff --git a/myst.yml b/myst.yml
index 2bd3893..dbca803 100644
--- a/myst.yml
+++ b/myst.yml
@@ -25,4 +25,4 @@ site:
     favicon: logo.svg
     logo: logo.svg
     folders: true
-  hide_footer_links: true
\ No newline at end of file
+    hide_footer_links: true
\ No newline at end of file