Skip to content

Commit f2b0b62

Browse files
towncrier: use login shell (#101)
1 parent 09a3b75 commit f2b0b62

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

towncrier-draft/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ runs:
55
using: composite
66
steps:
77
- name: Install Towncrier if needed
8-
shell: bash
8+
shell: bash -elo pipefail {0}
99
run: python3 -m pip install -q towncrier
1010

1111
- name: Get package version if NodeJS project
1212
id: node
13-
shell: bash
13+
shell: bash -elo pipefail {0}
1414
run: |
1515
if [[ -f package.json ]]; then
1616
echo "version=$(node -p "require('./package.json').version")" >> "$GITHUB_OUTPUT"
1717
fi
1818
1919
- name: Draft changelog
20-
shell: bash
20+
shell: bash -elo pipefail {0}
2121
env:
2222
VER: ${{ steps.node.outputs.version }}
2323
run: |

0 commit comments

Comments
 (0)