Skip to content

Commit 91ff295

Browse files
committed
chore: fix workflow erros
1 parent bc79a64 commit 91ff295

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

publish.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,20 @@
22
import subprocess
33

44
# Bump version
5+
print('Bumping version...')
56
subprocess.check_call(['bumpversion', 'patch'])
67

78
# Push changes to remote
9+
print('Pushing changes to remote...')
810
subprocess.check_call(['git', 'push'])
911
subprocess.check_call(['git', 'push', '--tags'])
1012

1113
# Run towncrier
14+
print('Running towncrier...')
1215
subprocess.check_call(['towncrier', '--yes'])
1316

17+
print("Created newsfragments directory")
1418
if not os.path.isdir('./newsfragments'):
15-
os.mkdir('./newsfragments')
19+
os.mkdir('./newsfragments')
20+
21+
print("Done!")

0 commit comments

Comments
 (0)