8000 [RELEASE] - Release version 0.15.3 · danielcoman/himl@53d1c09 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[RELEASE] - Release version 0.15.3 #13

[RELEASE] - Release version 0.15.3

[RELEASE] - Release version 0.15.3 #13

name: Publish Python distribution to PyPI
on: push
jobs:
build-n-publish:
name: Build and publish Python distributions to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Run tests
run: |
pip install pytest
pytest
- name: Build a binary wheel and a source tarball
run: |
pip install wheel
python setup.py sdist bdist_wheel
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.ADOBE_BOT_PYPI_TOKEN }}
0