Skip to content

1.3.0: .map/.foreach: set executor `via: Literal["thread", "proce… #80

1.3.0: .map/.foreach: set executor `via: Literal["thread", "proce…

1.3.0: .map/.foreach: set executor `via: Literal["thread", "proce… #80

Workflow file for this run

name: PyPI
on:
push:
branches:
- main
paths:
- 'version.py'
jobs:
pypi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.pypi_token }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/* --skip-existing
- name: Tag
run: |
TAG=$(python -c 'from version import __version__; print(__version__)' | sed 's/^/v/')
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
git tag -a $TAG -m"Release $TAG"
git push origin $TAG --force