Skip to content

Commit 163ed10

Browse files
committed
Updated changes
1 parent 2837197 commit 163ed10

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/main-rc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ jobs:
5252
- name: Build and publish
5353
env:
5454
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
55-
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
55+
TWINE_PASSWORD: ${{ secrets.PYPI_ORG_PWD }}
5656
run: |
5757
python -m build
5858
twine upload dist/*
5959
- name: Publish a Python distribution to PyPI
6060
uses: pypa/gh-action-pypi-publish@release/v1
6161
with:
6262
user: __token__
63-
password: ${{ secrets.PYPI_ORG_TOKEN }}
63+
password: ${{ secrets.PYPI_ORG_PWD }}

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ jobs:
6262
- name: Build and publish
6363
env:
6464
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
65-
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
65+
TWINE_PASSWORD: ${{ secrets.PYPI_ORG_PWD }}
6666
run: |
6767
python -m build
6868
twine upload dist/*
6969
- name: Publish a Python distribution to PyPI
7070
uses: pypa/gh-action-pypi-publish@release/v1
7171
with:
7272
user: __token__
73-
password: ${{ secrets.PYPI_ORG_TOKEN }}
73+
password: ${{ secrets.PYPI_ORG_PWD }}
7474
- name: Create Release
7575
id: create_release
7676
uses: actions/create-release@v1

pyproject-k8s.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 = "middleware-io-k8s"
7-
version = "2.4.1rc26"
7+
version = "2.4.1rc28"
88
requires-python = ">=3.8"
99
description = "Middleware's APM tool enables Python developers to effortlessly monitor their applications, gathering distributed tracing, metrics, logs, and profiling data for valuable insights and performance optimization."
1010
authors = [{ name = "middleware-dev" }]

pyproject.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 = "middleware-io"
7-
version = "2.4.1rc27"
7+
version = "2.4.1rc28"
88
requires-python = ">=3.8"
99
description = "Middleware's APM tool enables Python developers to effortlessly monitor their applications, gathering distributed tracing, metrics, logs, and profiling data for valuable insights and performance optimization."
1010
authors = [{ name = "middleware-dev" }]

0 commit comments

Comments
 (0)