From f36e5196cda378182494ee38c2e9cf612bd86c3c Mon Sep 17 00:00:00 2001 From: maxi297 Date: Fri, 6 Jan 2023 09:47:17 -0500 Subject: [PATCH] [ISSUE #19981] debugging part-to-bump --- .github/workflows/publish-cdk-command-manually.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-cdk-command-manually.yml b/.github/workflows/publish-cdk-command-manually.yml index a385904a1edc..39dd85e51b56 100644 --- a/.github/workflows/publish-cdk-command-manually.yml +++ b/.github/workflows/publish-cdk-command-manually.yml @@ -25,7 +25,7 @@ on: gitref: description: "The git ref to check out from the specified repository." required: true - default: issue-19981_avoid-race-condition-on-airbyte-cdk-release + default: master part-to-bump: type: choice description: "Choose the type of version upgrade : major|minor|patch" @@ -34,6 +34,9 @@ on: - minor - patch required: true + dry-run: + description: 'By default dry-run publishes to Test PyPi. Use "false" to publish to actual PyPi servers.' + required: false jobs: bump-version: @@ -51,6 +54,7 @@ jobs: run: | pip install bumpversion cd airbyte-cdk/python + echo part-to-bump=${{ github.event.inputs.part-to-bump }} bumpversion ${{ github.event.inputs.part-to-bump }} - name: Commit and Push Changes if: success()