mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-10 15:46:26 -04:00
Set a default shell for all jobs
Setting the shell to 'bash' turns on -e and -o pipefail, both of which are very desirable to have. https://github.com/actions/runner-images/issues/4459#issuecomment-965290856
This commit is contained in:
parent
2659a8cd90
commit
7ef8385f2e
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
|
@ -22,6 +22,10 @@ on:
|
|||
required: true
|
||||
default: false
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
check-and-release:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
Loading…
Reference in a new issue