From 0a61843ea878f441ec3e8127d514b3155f4b194b Mon Sep 17 00:00:00 2001 From: Boshen Date: Tue, 28 May 2024 23:47:10 +0800 Subject: [PATCH] ci: fix smoke test failing because bash is not installed on alpine --- .github/workflows/release_oxlint.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release_oxlint.yml b/.github/workflows/release_oxlint.yml index 8bf88df5d..b048c94b5 100644 --- a/.github/workflows/release_oxlint.yml +++ b/.github/workflows/release_oxlint.yml @@ -11,10 +11,6 @@ concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true -defaults: - run: - shell: bash - jobs: check: name: Check version @@ -81,6 +77,9 @@ jobs: name: Package ${{ matrix.code-target }} runs-on: ${{ matrix.os }} + defaults: + run: + shell: bash steps: - uses: taiki-e/checkout-action@v1