Skip to content

Commit baa9364

Browse files
committed
deploy: Set the default shell so it doesn't need to be repeated.
1 parent 394061d commit baa9364

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ on:
33
release:
44
types: [created]
55

6+
defaults:
7+
run:
8+
shell: bash
9+
610
jobs:
711
release:
812
name: Deploy Release
@@ -30,15 +34,12 @@ jobs:
3034
- uses: actions/checkout@master
3135
- name: Install hub
3236
run: ci/install-hub.sh ${{ matrix.os }}
33-
shell: bash
3437
- name: Install Rust
3538
run: ci/install-rust.sh stable ${{ matrix.target }}
36-
shell: bash
3739
- name: Build and deploy artifacts
3840
env:
3941
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4042
run: ci/make-release-asset.sh ${{ matrix.os }} ${{ matrix.target }}
41-
shell: bash
4243
pages:
4344
name: GitHub Pages
4445
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)