Skip to content

Commit

Permalink
ci!: fix changelog auto generation
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjclark committed Mar 15, 2024
1 parent af21746 commit bb10855
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/print-release-name-vars.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import argparse
import os
import subprocess
import time
import os


def str2bool(v):
Expand Down Expand Up @@ -65,7 +65,7 @@ def maybe_add_org_prefix(tag_name):

if args.full_release:
previous_release_tag = subprocess.check_output(
'git describe --tags --abbrev=0 --match "2.55-*"', shell=True, encoding='utf-8')
'git describe --tags --abbrev=0 --match "2.55-*" --match "2.55.*"', shell=True, encoding='utf-8')
else:
previous_release_tag = subprocess.check_output(
'git describe --tags --abbrev=0', shell=True, encoding='utf-8')
Expand Down

0 comments on commit bb10855

Please sign in to comment.