mux: Dirty workaround for name cleaning #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
name: Publish releases when new tag | |
on: | |
push: | |
tags: | |
- v[0-9]+** | |
jobs: | |
package_build: | |
name: Build and push to PyPI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Prep Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.11" | |
- name: Install build tools | |
run: | | |
python -m pip install build setuptools twine wheel --user | |
continue-on-error: false | |
- name: Build source and wheel | |
id: build | |
run: | | |
python -m build --outdir dist/ | |
continue-on-error: true | |
- name: Check the output | |
run: | | |
python -m twine check --strict dist/* | |
continue-on-error: false | |
- name: Die on failure | |
if: steps.build.outcome != 'success' | |
run: exit 1 | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
user: __token__ | |
password: ${{ secrets.AUTH_TOKEN }} |