Bump pypa/gh-action-pypi-publish from 1.10.0 to 1.10.1 in /.github/workflows in the actions group #187
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: Release | |
on: | |
pull_request: | |
# We also want this workflow triggered if the 'Build wheels' label is added | |
# or present when PR is updated | |
types: | |
- synchronize | |
- labeled | |
push: | |
tags: | |
- '*' | |
jobs: | |
build-n-publish: | |
name: Build and publish Python 🐍 distributions 📦 to PyPI | |
runs-on: ubuntu-latest | |
if: ((github.event_name == 'push' && startsWith(github.ref, 'refs/tags')) || contains(github.event.pull_request.labels.*.name, 'Build wheels')) | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 | |
with: | |
python-version: 3.8 | |
- name: Install python-build and twine | |
run: python -m pip install build "twine>=3.3" | |
- name: Build package | |
run: python -m build --sdist --wheel . | |
- name: List result | |
run: ls -l dist | |
- name: Check long_description | |
run: python -m twine check --strict dist/* | |
- name: Test package | |
run: | | |
cd .. | |
python -m venv testenv | |
testenv/bin/pip install pytest pytest-remotedata $(ls pytest-doctestplus/dist/*.whl)[test] | |
testenv/bin/pytest pytest-doctestplus/tests --doctest-plus --doctest-rst | |
- name: Publish distribution 📦 to PyPI | |
if: startsWith(github.ref, 'refs/tags') | |
uses: pypa/gh-action-pypi-publish@0ab0b79471669eb3a4d647e625009c62f9f3b241 # v1.10.1 | |
with: | |
user: __token__ | |
password: ${{ secrets.pypi_password }} |