Skip to content

Commit aa9e1d3

Browse files
new release fix
1 parent 9fbf4a4 commit aa9e1d3

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
publish:
3737
needs: test
3838
runs-on: ubuntu-latest
39-
environment: main_environment
39+
environment: test_environment
4040
if: github.event_name == 'release' && github.event.action == 'published'
4141

4242
steps:
@@ -55,8 +55,9 @@ jobs:
5555
pip install build
5656
- name: Build package
5757
run: python -m build
58-
- name: Publish package
58+
- name: Publish package to TestPyPI
5959
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
6060
with:
6161
user: __token__
62-
password: ${{ secrets.PYPI_API_TOKEN }}
62+
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
63+
repository_url: https://test.pypi.org/legacy/

project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "peepdb"
7-
version = "0.1.1"
7+
version = "0.1.2"
88
description = "A quick database table viewer"
99
authors = [
1010
{name = "Evangelos Meklis", email = "vmeklis@hotmail.com"},

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="peepdb",
8-
version="0.1.1",
8+
version="0.1.2",
99
author="Evangelos Meklis",
1010
author_email="vmeklis@hotmail.com",
1111
description="A quick database table viewer",

0 commit comments

Comments
 (0)