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