-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (34 loc) · 999 Bytes
/
pypi.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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