cherry-website/.gitea/workflows/build-demo.yaml
Cdm2883 67d24338ca
Some checks failed
Build Demo / build (push) Failing after 8s
ci: fix python version
2024-08-10 17:20:42 +08:00

36 lines
735 B
YAML

name: Build Demo
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12.4'
cache: 'pip'
- name: Install Material for MkDocs
run: pip install mkdocs-material
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install npm dependence
run: npm install
- name: Run build script
run: npm run build
- name: Upload Output
uses: actions/upload-artifact@v4
with:
name: static-website
path: site/