Skip to content

Commit

Permalink
ci(all): Update the rule of triggering the ci
Browse files Browse the repository at this point in the history
  • Loading branch information
SWHL committed Sep 20, 2024
1 parent a6d710a commit 70569e4
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 39 deletions.
68 changes: 34 additions & 34 deletions .github/workflows/table_cls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Push table_cls to pypi
on:
push:
branches: [ main ]
paths:
- 'table_cls/**'
# tags:
# - v*
# paths:
# - 'table_cls/**'
tags:
- table_cls_v*

jobs:
UnitTesting:
Expand Down Expand Up @@ -35,33 +35,33 @@ jobs:
pytest tests/test_table_cls.py
# 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/table_cls_models.zip
# unzip table_cls_models.zip
# mv table_cls_models/*.onnx table_cls/models/
#
# python setup_table_cls.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.TABLE_CLS }}
# 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/table_cls_models.zip
unzip table_cls_models.zip
mv table_cls_models/*.onnx table_cls/models/
python setup_table_cls.py bdist_wheel "${{ github.ref_name }}"
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@v1.5.0
with:
password: ${{ secrets.TABLE_CLS }}
packages_dir: dist/
10 changes: 5 additions & 5 deletions .github/workflows/wired_table_rec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Push wired_table_rec to pypi
on:
push:
branches: [ main ]
paths:
- 'wired_table_rec/**'
# tags:
# - v*
# paths:
# - 'wired_table_rec/**'
tags:
- wired_v*

jobs:
UnitTesting:
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
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 }}"
python setup_wired.py bdist_wheel "${{ github.ref_name }}"
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@v1.5.0
Expand Down

0 comments on commit 70569e4

Please sign in to comment.