Skip to content

Commit 7393e30

Browse files
committed
CI: declare bash shell
In case we ever run any of these jobs on Windows.
1 parent be4acd7 commit 7393e30

3 files changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,11 @@ jobs:
3535

3636
- name: Set up build environment
3737
run: .github/build-setup.sh
38+
shell: bash
3839

3940
- name: Maven CI build
4041
run: .github/build.sh
42+
shell: bash
4143
env:
4244
GPG_KEY_NAME: ${{ secrets.GPG_KEY_NAME }}
4345
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
@@ -49,7 +51,9 @@ jobs:
4951

5052
- name: Smelt components
5153
run: .github/smelt.sh
54+
shell: bash
5255

5356
- name: Publish smelt results
5457
if: always() && github.ref == 'refs/heads/master' && github.event_name == 'push'
5558
run: .github/publish.sh smelt.json "Update smelt results"
59+
shell: bash

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,11 @@ jobs:
2121

2222
- name: Set up release environment
2323
run: .github/release-setup.sh
24+
shell: bash
2425

2526
- name: Execute the release
2627
run: .github/build.sh
28+
shell: bash
2729
env:
2830
GPG_KEY_NAME: ${{ secrets.GPG_KEY_NAME }}
2931
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

.github/workflows/status.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@ jobs:
2424

2525
- name: Generate and publish status page
2626
run: .github/status.sh
27+
shell: bash

0 commit comments

Comments
 (0)