Skip to content

Commit 800baed

Browse files
committed
SDK regeneration
1 parent d8282ec commit 800baed

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ jobs:
4040
needs: [compile, test]
4141
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
4242
runs-on: ubuntu-latest
43-
permissions:
44-
id-token: write
4543
steps:
4644
- name: Checkout repo
4745
uses: actions/checkout@v4
@@ -54,7 +52,10 @@ jobs:
5452
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
5553
- name: Install dependencies
5654
run: poetry install
57-
- name: Build package
58-
run: poetry --no-interaction -v build
59-
- name: Publish package
60-
uses: pypa/gh-action-pypi-publish@release/v1
55+
- name: Publish to pypi
56+
run: |
57+
poetry config repositories.remote https://upload.pypi.org/legacy/
58+
poetry --no-interaction -v publish --build --repository remote --username "$PYPI_USERNAME" --password "$PYPI_PASSWORD"
59+
env:
60+
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
61+
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "pipedream"
33

44
[tool.poetry]
55
name = "pipedream"
6-
version = "0.3.1"
6+
version = "0.3.2"
77
description = ""
88
readme = "README.md"
99
authors = []

src/pipedream/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ def __init__(
2626

2727
def get_headers(self) -> typing.Dict[str, str]:
2828
headers: typing.Dict[str, str] = {
29-
"User-Agent": "pipedream/0.3.1",
29+
"User-Agent": "pipedream/0.3.2",
3030
"X-Fern-Language": "Python",
3131
"X-Fern-SDK-Name": "pipedream",
32-
"X-Fern-SDK-Version": "0.3.1",
32+
"X-Fern-SDK-Version": "0.3.2",
3333
**(self.get_custom_headers() or {}),
3434
}
3535
if self._x_pd_environment is not None:

0 commit comments

Comments
 (0)