Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
- gooddata-dbt
- gooddata-flight-server
- gooddata-flexconnect
- gooddata-pipelines
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -78,8 +79,8 @@ jobs:
prerelease: false
make_latest: true
files: |
dist/**/*.whl
dist/**/*.tar.gz
dist/**/*.whl
dist/**/*.tar.gz
publish:
name: Publish components
runs-on: ubuntu-latest
Expand All @@ -94,6 +95,7 @@ jobs:
- gooddata-dbt
- gooddata-flight-server
- gooddata-flexconnect
- gooddata-pipelines
steps:
- name: Obtain ${{ matrix.component }} artifacts
uses: actions/download-artifact@v4
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/dev-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- gooddata-dbt
- gooddata-flight-server
- gooddata-flexconnect
- gooddata-pipelines
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down
16 changes: 8 additions & 8 deletions gooddata-pipelines/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions gooddata-pipelines/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# (C) 2025 GoodData Corporation
[project]
name = "gooddata-pipelines"
version = "0.1.0"
version = "1.47.0"
description = ""
authors = [{ name = "GoodData", email = "support@gooddata.com" }]
license = { text = "MIT" }
Expand All @@ -11,7 +11,7 @@ dependencies = [
"pydantic (>=2.11.3,<3.0.0)",
"requests (>=2.32.3,<3.0.0)",
"types-requests (>=2.32.0,<3.0.0)",
"gooddata-sdk (>=1.43.0,<2.0.0)",
"gooddata-sdk~=1.47.0",
"boto3 (>=1.39.3,<2.0.0)",
"boto3-stubs (>=1.39.3,<2.0.0)",
"types-pyyaml (>=6.0.12.20250326,<7.0.0)",
Expand Down
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,15 @@ src = "gooddata-flexconnect/setup.py"
search = '"Documentation": "https://gooddata-flexconnect.readthedocs.io/en/v{current_version}"'

[[tool.tbump.file]]
# gooddata-pipelines version
src = "gooddata-pipelines/pyproject.toml"
search = 'version = "{current_version}"'

[[tool.tbump.file]]
# gooddata-sdk version in gooddata-pipelines dependencies
src = "gooddata-pipelines/pyproject.toml"
search = "gooddata-sdk~={current_version}"

# You can specify a list of commands to
# run after the files have been patched
# and before the git commit is made
Expand Down
Loading