Skip to content

Commit 4ed63aa

Browse files
committed
Add default shell
1 parent 45260cc commit 4ed63aa

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/actions/build_docs/action.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ inputs:
88

99
runs:
1010
using: 'composite'
11+
1112
steps:
1213
- name: Get current week number of year
1314
id: date
1415
run: echo "date=$(date +%Y-W%W)" >> $GITHUB_OUTPUT # e.g., 2024-W19
16+
shell: bash
1517

1618
# Install Micromamba with conda-forge dependencies
1719
- name: Setup Micromamba
@@ -59,6 +61,7 @@ runs:
5961
# Change modification times of the two files, so GMT won't refresh it
6062
touch ~/.gmt/gmt_data_server.txt ~/.gmt/gmt_hash_server.txt
6163
ls -lhR ~/.gmt
64+
shell: bash -l {0}
6265
env:
6366
GH_TOKEN: ${{ github.token }}
6467

@@ -67,9 +70,12 @@ runs:
6770
run: |
6871
python -m build --sdist
6972
python -m pip install dist/*
73+
shell: bash
7074

7175
- name: Build the HTML documentation
7276
run: make -C doc clean html
77+
shell: bash -l {0}
7378

7479
- name: Build the PDF documentation
7580
run: make -C doc pdf
81+
shell: bash -l {0}

0 commit comments

Comments
 (0)