修复初始化时队列大小限制无效的 Bug #141
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- setup.py # 每次更改 VERSION 时发布到 TestPyPI | |
release: | |
types: [ created ] # 每次创建新标签时发布到 PyPI | |
jobs: | |
deploy-to-test-pypi: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' && github.repository == 'KKKKKKKEM/bricks' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.8' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel twine | |
python -m pip install -r requirements.txt | |
- name: Build package | |
run: | | |
python setup.py sdist bdist_wheel | |
- name: Publish package | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }} | |
run: | | |
twine upload --repository testpypi dist/* | |
deploy-to-pypi: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'release' && github.event.action == 'created' && github.repository == 'KKKKKKKEM/bricks' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.8' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel twine | |
python -m pip install -r requirements.txt | |
- name: Build package | |
run: | | |
python setup.py sdist bdist_wheel | |
- name: Publish package | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} | |
run: | | |
twine upload dist/* |