Skip to content

Commit 46ff873

Browse files
committed
fix(workflow): adjust shell usage for musl builds in CI workflow
1 parent af552e0 commit 46ff873

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
defaults:
6363
run:
64-
shell: bash
64+
shell: ${{ matrix.name == 'musl' && 'sh' || 'bash' }}
6565

6666
env:
6767
CONNECTION_STRING: ${{ secrets.CONNECTION_STRING }}
@@ -90,12 +90,6 @@ jobs:
9090
run: sudo apt install wabt
9191

9292
- name: build sqlite-sync
93-
if: matrix.name == 'musl'
94-
run: make extension ${{ matrix.make && matrix.make || ''}}
95-
shell: sh
96-
97-
- name: build sqlite-sync
98-
if: matrix.name != 'musl'
9993
run: make extension ${{ matrix.make && matrix.make || ''}}
10094

10195
- name: windows install sqlite3

0 commit comments

Comments
 (0)