forked from bentoml/openllm-models
-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (46 loc) · 1.2 KB
/
make_bentos.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
48
49
50
51
52
53
54
55
56
name: Make bentos
on:
push:
branches:
- nightly
permissions:
contents: write
jobs:
make-bentos:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Make bentos
run: |
python -m pip install --upgrade pip
cd src
pip install -r make_requirements.txt
make
cd ..
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install jinja2 openllm
- name: Run gen_readme.py
run: python gen_readme.py
- name: Configure git
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
- name: Commit and push changes
run: |
if [[ -n $(git status -s) ]]; then
git add bentoml/bentos/*
git add README.md
git commit -m "chore: make bentos"
git push origin nightly
else
echo "No changes to commit"
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}