Skip to content

Commit

Permalink
rc2 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
internaut committed May 3, 2023
1 parent bb32b2b commit 99a6c31
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags')
environment:
name: pypi-test
#name: pypi-test
name: pypi
url: https://pypi.org/p/tmtoolkit
permissions:
id-token: write
Expand All @@ -21,7 +22,9 @@ jobs:
run: python -m pip install -U setuptools wheel build
- name: Build
run: python -m build .
- name: Publish package distributions to TestPyPI
# - name: Publish package distributions to TestPyPI
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
# repository-url: https://test.pypi.org/legacy/
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from setuptools import setup, find_packages

__title__ = 'tmtoolkit'
__version__ = '0.12.0.rc1'
__version__ = '0.12.0.rc2'
__author__ = 'Markus Konrad'
__license__ = 'Apache License 2.0'

Expand Down
2 changes: 1 addition & 1 deletion tmtoolkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import logging

__title__ = 'tmtoolkit'
__version__ = '0.12.0.rc1'
__version__ = '0.12.0.rc2'
__author__ = 'Markus Konrad'
__license__ = 'Apache License 2.0'

Expand Down

0 comments on commit 99a6c31

Please sign in to comment.