Skip to content

Commit 1bf68e1

Browse files
authored
use a login shell for shell code steps (#8)
1 parent ecce62a commit 1bf68e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

action.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ runs:
2626
# TODO: learn enough javascript / node.js to write the reportlog parsing
2727
steps:
2828
- name: print environment information
29-
shell: bash
29+
shell: bash -l {0}
3030
run: |
3131
python --version
3232
python -m pip list
3333
- name: install dependencies
34-
shell: bash
34+
shell: bash -l {0}
3535
run: |
3636
python -m pip install pytest more-itertools
3737
- name: produce the issue body
38-
shell: bash
38+
shell: bash -l {0}
3939
run: |
4040
python $GITHUB_ACTION_PATH/parse_logs.py ${{ inputs.log-path }}
4141
- name: create the issue

0 commit comments

Comments
 (0)