-
-
Notifications
You must be signed in to change notification settings - Fork 366
47 lines (39 loc) · 1.21 KB
/
gen_whl_to_pypi_rapidocr_api.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: Push rapidocr_api to pypi
on:
push:
branches: [ main ]
paths:
- 'api/rapidocr_api/**'
- 'docs/doc_whl_rapidocr_api.md'
- 'api/setup.py'
- '.github/workflows/gen_whl_to_pypi_rapidocr_api.yml'
jobs:
GenerateWHL_PushPyPi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: '3.7'
architecture: 'x64'
- name: Set SSH Environment
env:
DEPLOY_KEYS: ${{ secrets.GEN_PYTHON_SDK }}
run: |
mkdir -p ~/.ssh/
echo "$DEPLOY_KEYS" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
chmod 700 ~/.ssh && chmod 600 ~/.ssh/*
- name: Run setup.py
run: |
cd api
pip install -r requirements.txt
pip install get_pypi_latest_version wheel
python -m pip install --upgrade pip
python setup.py bdist_wheel "${{ github.event.head_commit.message }}"
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@v1.5.0
with:
password: ${{ secrets.RAPIDOCR_API_PYPI }}
packages_dir: api/dist/