From 78a65545c17ff00a0d88ba01efbb817f342f9d56 Mon Sep 17 00:00:00 2001 From: "Edgar P. Burkhart" Date: Sun, 9 Feb 2025 18:58:40 +0100 Subject: [PATCH] Enhance demo workflow by adding step names for clarity and reorganizing commands --- .forgejo/workflows/demo.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml index fc726ea..0e4c96a 100644 --- a/.forgejo/workflows/demo.yaml +++ b/.forgejo/workflows/demo.yaml @@ -6,6 +6,11 @@ jobs: test: runs-on: self-hosted steps: - - run: /usr/bin/python -m venv .env - - run: ./.env/bin/pip install mystmd - - run: ./.env/bin/myst build --html \ No newline at end of file + - name: List contents + run: ls + - 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