Skip to content

Commit 875b35c

Browse files
committed
specify bash
1 parent 84495bf commit 875b35c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/release_auto.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,13 @@ jobs:
2323

2424
- name: calculate bump level
2525
id: bump_level
26+
shell: bash
2627
run: |
2728
grep -RE '(major_changes|breaking_changes)' changelogs/fragments
2829
MAJOR=$?
2930
grep -R minor_changes changelogs/fragments
3031
MINOR=$?
32+
3133
if [ $MAJOR -eq 0 ]; then
3234
echo "level=major" >> "$GITHUB_OUTPUT"
3335
echo "Determined change level: major"

0 commit comments

Comments
 (0)