-
-
Notifications
You must be signed in to change notification settings - Fork 366
54 lines (45 loc) · 1.48 KB
/
gen_whl_to_pypi_rapidocr_web.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
name: Push rapidocr_web to pypi
on:
push:
branches: [ main ]
paths:
- 'ocrweb/rapidocr_web/**'
- '!ocrweb/rapidocr_web/ocr_web.spec'
- 'docs/doc_whl_rapidocr_web.md'
- 'ocrweb/setup.py'
- '.github/workflows/gen_whl_to_pypi_rapidocr_web.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 ocrweb
pip install -r requirements.txt
python -m pip install --upgrade pip
python setup.py bdist_wheel ${{ github.event.head_commit.message }}
# - name: Publish distribution 📦 to Test PyPI
# uses: pypa/gh-action-pypi-publish@v1.5.0
# with:
# password: ${{ secrets.TEST_PYPI_API_TOKEN }}
# repository_url: https://test.pypi.org/legacy/
# packages_dir: ocrweb/dist/
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@v1.5.0
with:
password: ${{ secrets.RAPIDOCR_OPENVINO }}
packages_dir: ocrweb/dist/