Skip to content

Commit

Permalink
deploy: Set the default shell so it doesn't need to be repeated.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Jul 17, 2023
1 parent 394061d commit baa9364
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ on:
release:
types: [created]

defaults:
run:
shell: bash

jobs:
release:
name: Deploy Release
Expand Down Expand Up @@ -30,15 +34,12 @@ jobs:
- uses: actions/checkout@master
- name: Install hub
run: ci/install-hub.sh ${{ matrix.os }}
shell: bash
- name: Install Rust
run: ci/install-rust.sh stable ${{ matrix.target }}
shell: bash
- name: Build and deploy artifacts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ci/make-release-asset.sh ${{ matrix.os }} ${{ matrix.target }}
shell: bash
pages:
name: GitHub Pages
runs-on: ubuntu-latest
Expand Down

0 comments on commit baa9364

Please sign in to comment.