Skip to content

docs(*): Update docs path #9

docs(*): Update docs path

docs(*): Update docs path #9

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 Test PyPI
# uses: pypa/[email protected]
# 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/[email protected]
with:
password: ${{ secrets.RAPIDOCR_API_PYPI }}
packages_dir: api/dist/