You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/pypi_publish.yml
+6-7Lines changed: 6 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ on:
14
14
workflow_dispatch:
15
15
inputs:
16
16
version:
17
-
description: "Version. The version to publish, ie 1.0.0 or 1.0.0-dev1. In most cases, you can leave this blank. If run from a release tag (recommended), the version number will be inferred from the git tag."
17
+
description: "Note that this workflow is intended for prereleases. For public-facing stable releases, please use the GitHub Releases workflow instead: https://github.com/airbytehq/airbyte-python-cdk/blob/main/docs/RELEASES.md. If running this workflow from main or from a dev branch, please enter the desired version number here, for instance 1.2.3dev0 or 1.2.3rc1."
18
18
required: false
19
19
publish_to_pypi:
20
20
description: "Publish to PyPI. If true, the workflow will publish to PyPI."
@@ -30,7 +30,7 @@ on:
30
30
description: "Update Connector Builder. If true, the workflow will create a PR to bump the CDK version used by Connector Builder."
31
31
type: boolean
32
32
required: true
33
-
default: true
33
+
default: false
34
34
35
35
jobs:
36
36
build:
@@ -150,11 +150,9 @@ jobs:
150
150
151
151
publish_sdm:
152
152
name: Publish SDM to DockerHub
153
-
# TODO: When we're ready to publish after each release, prefix the `if` below with:
0 commit comments