Skip to content

Commit df1ebb7

Browse files
committed
More logs
1 parent ceb96a1 commit df1ebb7

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ jobs:
6161
###########################################################################################
6262
- name: test to see if default patch bumping from the latest git tag of 0.0.1 works
6363
id: version_bumped
64-
run: ./version-bump.sh
64+
run: |
65+
echo "===> test to see if default patch bumping from the latest git tag of 0.0.1 works";
66+
./version-bump.sh
6567
env:
6668
GHA_TAG: latest
6769

@@ -82,7 +84,9 @@ jobs:
8284

8385
- name: bump should be patch (0.0.3) NOT minor (0.1.0) because merge bump is disabled
8486
id: version_no_merge_bump
85-
run: ./version-bump.sh
87+
run: |
88+
echo "===> bump should be patch (0.0.3) NOT minor (0.1.0) because merge bump is disabled";
89+
./version-bump.sh
8690
env:
8791
GHA_TAG: latest
8892
GHA_ENABLE_MERGE_COMMIT_BUMP: "false"

0 commit comments

Comments
 (0)