cherry-website/.gitea/workflows/build-demo.yaml
Cdm2883 f2def7f0d8
Some checks failed
Build Demo / build (push) Failing after 25s
ci: fix python installing
2024-08-10 18:06:59 +08:00

35 lines
782 B
YAML

name: Build Demo
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: https://gitea.com/actions/checkout@v4
- name: Setup Python
uses: https://gitea.com/actions/setup-python@v2
with:
python-version: 3.9.12
- name: Install Material for MkDocs
run: pip install mkdocs-material
- name: Setup Node.js
uses: https://gitea.com/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: https://gitea.com/actions/upload-artifact@v4
with:
name: static-website
path: site/