cours4.0/.forgejo/workflows/demo.yaml

18 lines
512 B
YAML
Raw Normal View History

on:
push:
branches:
- "dev-actions"
jobs:
test:
2025-02-09 18:43:45 +01:00
runs-on: self-hosted
steps:
- 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
- name: Install generated files
run: install -d _build/html /data/srv/forgejo-runner/cours4.0