V0.23.3 (#1116) #2
Workflow file for this run
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
# To create a release, create a tag and push it to GitHub: | |
#git tag -a "v0.0.1-beta" -m "beta version testing" | |
#git push --tags | |
# https://dev.to/iamtekson/publish-package-to-pypi-and-release-new-version-using-github-actions-108k | |
name: Publish MLxtend to PyPI | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
build-n-publish: | |
name: Build and publish to PyPI | |
runs-on: ubuntu-latest | |
environment: | |
name: pypi | |
url: https://pypi.org/p/mlxtend | |
permissions: | |
id-token: write | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- name: Build source and wheel distributions | |
run: | | |
python -m pip install --upgrade build twine | |
pip install importlib_metadata==7.2.1 | |
python -m build | |
twine check --strict dist/* | |
- name: Publish distribution to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} |