Skip to content

Commit

Permalink
fix: disabled create_tag in test action
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianKuesters committed Mar 18, 2024
1 parent 0aef586 commit 7165ffa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
- name: Run
id: get-release-version
uses: ./
with:
create-tag: "false"

- name: Show the next version
run: |
Expand Down
3 changes: 0 additions & 3 deletions src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,9 +301,6 @@ def main() -> None:
args.create_tag = args.create_tag.lower() == 'true'
# endregion

# log args.create_tag
logger.info('args.create_tag=%s', args.create_tag)

new_version, has_changes = get_new_version(args.prefix, args.suffix, args.only_increase_suffix)

new_version_tag_name = f'{args.prefix}{new_version}'
Expand Down

0 comments on commit 7165ffa

Please sign in to comment.