cherry-website/.gitea/workflows/build-demo.yaml
Cdm2883 82e6243f5b
Some checks failed
Build Demo / build (push) Failing after 6m37s
ci: fix python installing
2024-08-10 17:28:02 +08:00

33 lines
671 B
YAML

name: Build Demo
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: actions/checkout@v4
- name: Install Python
run: sudo apt-get install python3.9
- 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/