-
Notifications
You must be signed in to change notification settings - Fork 162
61 lines (60 loc) · 2.08 KB
/
deploy-mito-ai.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
57
58
59
60
61
name: Deploy - Mito AI
on:
push:
branches:
- dev
- main
jobs:
deploy-mito-ai:
name: Deploy mito-ai
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.11]
steps:
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- uses: actions/checkout@v2
with:
ref: ${{ steps.extract_branch.outputs.branch }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Setup Auth for PyPi
run: |
echo -e "[distutils]" >> ~/.pypirc
echo -e "index-servers =" >> ~/.pypirc
echo -e " pypi" >> ~/.pypirc
echo -e " testpypi" >> ~/.pypirc
echo -e "[pypi]" >> ~/.pypirc
echo -e "repository = https://upload.pypi.org/legacy/" >> ~/.pypirc
echo -e "username = __token__" >> ~/.pypirc
echo -e "password = ${{ secrets.PYPI_API_TOKEN }}" >> ~/.pypirc
echo -e "" >> ~/.pypirc
echo -e "[testpypi]" >> ~/.pypirc
echo -e "repository = https://test.pypi.org/legacy/" >> ~/.pypirc
echo -e "username = __token__" >> ~/.pypirc
echo -e "password = ${{ secrets.TEST_PYPI_API_TOKEN }}" >> ~/.pypirc
- name: Setup mito-ai
run: |
cd mito-ai
rm -rf venv
python3 -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip setuptools wheel
python ../deployment/bump_version.py mito-ai ${{ steps.extract_branch.outputs.branch }}
python -m pip install -e ".[deploy]" --verbose
python -m pip check
jlpm install
jlpm run build
- name: Deploy mito-ai
run: |
cd mito-ai
source venv/bin/activate
python ../deployment/deploy.py ${{ steps.extract_branch.outputs.branch }}