-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (40 loc) · 1.19 KB
/
gen.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: MD-Models Pipeline
on:
- push
jobs:
generate:
name: Generate Pipeline
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install MD-Models
run: cargo install --git https://github.com/JR-1991/md-models.git
- name: Run the generation pipeline
run: md-models pipeline -i gen.toml
- name: "Push generated code/schemes"
shell: "bash"
run: |
if [[ `git status --porcelain` ]]; then
git add --all
git config --global user.name 'MD-Models Bot'
git config --global user.email '[email protected]'
git commit -am "Model update"
git push
else
echo "Nothing changed!"
fi
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: actions/cache@v2
with:
path: .cache
key: ${{ github.ref }}
- run: pip install mkdocs-material jupyter nbconvert mkdocs-jupyter
- run: mkdocs gh-deploy --force