From 87689067a30ac54dc765386ebad1db99d0585100 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Thu, 21 Mar 2024 19:58:03 -0700 Subject: [PATCH] workflows: fix client workflow to use bash by default on windows --- .github/workflows/client.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml index fb07461..769b1e4 100644 --- a/.github/workflows/client.yml +++ b/.github/workflows/client.yml @@ -20,6 +20,9 @@ jobs: TARGET_ARCH: "${{ matrix.arch }}" runs-on: "${{ matrix.os.on }}" name: build ${{ matrix.os.name }}-${{ matrix.arch }} + defaults: + run: + shell: bash steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable