ci: auto build
This commit is contained in:
parent
2c8ed66bab
commit
e8478372e7
35
.gitea/workflows/build-demo.yaml
Normal file
35
.gitea/workflows/build-demo.yaml
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
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.11.0'
|
||||||
|
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/
|
Loading…
x
Reference in New Issue
Block a user