Skip to content

Commit e065f92

Browse files
authored
chore: add gooddata-pipelines to release workflows (#1090)
* chore: add gooddata-pipelines to release workflows
1 parent 2423aeb commit e065f92

File tree

5 files changed

+21
-12
lines changed

5 files changed

+21
-12
lines changed

.github/workflows/build-release.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
- gooddata-dbt
3131
- gooddata-flight-server
3232
- gooddata-flexconnect
33+
- gooddata-pipelines
3334
runs-on: ubuntu-latest
3435
steps:
3536
- uses: actions/checkout@v4
@@ -78,8 +79,8 @@ jobs:
7879
prerelease: false
7980
make_latest: true
8081
files: |
81-
dist/**/*.whl
82-
dist/**/*.tar.gz
82+
dist/**/*.whl
83+
dist/**/*.tar.gz
8384
publish:
8485
name: Publish components
8586
runs-on: ubuntu-latest
@@ -94,6 +95,7 @@ jobs:
9495
- gooddata-dbt
9596
- gooddata-flight-server
9697
- gooddata-flexconnect
98+
- gooddata-pipelines
9799
steps:
98100
- name: Obtain ${{ matrix.component }} artifacts
99101
uses: actions/download-artifact@v4

.github/workflows/dev-release.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- gooddata-dbt
2323
- gooddata-flight-server
2424
- gooddata-flexconnect
25+
- gooddata-pipelines
2526
steps:
2627
- name: Checkout Repository
2728
uses: actions/checkout@v4

gooddata-pipelines/poetry.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gooddata-pipelines/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# (C) 2025 GoodData Corporation
22
[project]
33
name = "gooddata-pipelines"
4-
version = "0.1.0"
4+
version = "1.47.0"
55
description = ""
66
authors = [{ name = "GoodData", email = "support@gooddata.com" }]
77
license = { text = "MIT" }
@@ -11,7 +11,7 @@ dependencies = [
1111
"pydantic (>=2.11.3,<3.0.0)",
1212
"requests (>=2.32.3,<3.0.0)",
1313
"types-requests (>=2.32.0,<3.0.0)",
14-
"gooddata-sdk (>=1.43.0,<2.0.0)",
14+
"gooddata-sdk~=1.47.0",
1515
"boto3 (>=1.39.3,<2.0.0)",
1616
"boto3-stubs (>=1.39.3,<2.0.0)",
1717
"types-pyyaml (>=6.0.12.20250326,<7.0.0)",

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,15 @@ src = "gooddata-flexconnect/setup.py"
186186
search = '"Documentation": "https://gooddata-flexconnect.readthedocs.io/en/v{current_version}"'
187187

188188
[[tool.tbump.file]]
189+
# gooddata-pipelines version
189190
src = "gooddata-pipelines/pyproject.toml"
190191
search = 'version = "{current_version}"'
191192

193+
[[tool.tbump.file]]
194+
# gooddata-sdk version in gooddata-pipelines dependencies
195+
src = "gooddata-pipelines/pyproject.toml"
196+
search = "gooddata-sdk~={current_version}"
197+
192198
# You can specify a list of commands to
193199
# run after the files have been patched
194200
# and before the git commit is made

0 commit comments

Comments
 (0)