Skip to content

Commit

Permalink
ci: Enable wired package auto packaging program
Browse files Browse the repository at this point in the history
  • Loading branch information
SWHL committed Sep 19, 2024
1 parent 230625b commit b90689f
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions .github/workflows/wired_table_rec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,33 +39,33 @@ jobs:
pytest tests/test_wired_table_rec.py
# GenerateWHL_PushPyPi:
# needs: UnitTesting
# 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: Run setup.py
# run: |
# pip install -r requirements.txt
# python -m pip install --upgrade pip
# pip install wheel get_pypi_latest_version
#
# wget https://github.com/RapidAI/TableStructureRec/releases/download/v0.0.0/wired_table_rec_models.zip
# unzip wired_table_rec_models.zip
# mv wired_table_rec_models/*.onnx wired_table_rec/models/
#
# python setup_wired.py bdist_wheel "${{ github.event.head_commit.message }}"
#
# - name: Publish distribution 📦 to PyPI
# uses: pypa/[email protected]
# with:
# password: ${{ secrets.PYPI_API_TOKEN }}
# packages_dir: dist/
GenerateWHL_PushPyPi:
needs: UnitTesting
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
architecture: 'x64'

- name: Run setup.py
run: |
pip install -r requirements.txt
python -m pip install --upgrade pip
pip install wheel get_pypi_latest_version
wget https://github.com/RapidAI/TableStructureRec/releases/download/v0.0.0/wired_table_rec_models.zip
unzip wired_table_rec_models.zip
mv wired_table_rec_models/*.onnx wired_table_rec/models/
python setup_wired.py bdist_wheel "${{ github.event.head_commit.message }}"
- name: Publish distribution 📦 to PyPI
uses: pypa/[email protected]
with:
password: ${{ secrets.PYPI_API_TOKEN }}
packages_dir: dist/

0 comments on commit b90689f

Please sign in to comment.