Skip to content

Commit

Permalink
[ISSUE #19981] debugging part-to-bump
Browse files Browse the repository at this point in the history
  • Loading branch information
maxi297 committed Jan 6, 2023
1 parent 4ee20b0 commit f36e519
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/publish-cdk-command-manually.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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:
Expand All @@ -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()
Expand Down

0 comments on commit f36e519

Please sign in to comment.