We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af552e0 commit 46ff873Copy full SHA for 46ff873
1 file changed
.github/workflows/main.yml
@@ -61,7 +61,7 @@ jobs:
61
62
defaults:
63
run:
64
- shell: bash
+ shell: ${{ matrix.name == 'musl' && 'sh' || 'bash' }}
65
66
env:
67
CONNECTION_STRING: ${{ secrets.CONNECTION_STRING }}
@@ -90,12 +90,6 @@ jobs:
90
run: sudo apt install wabt
91
92
- 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'
99
run: make extension ${{ matrix.make && matrix.make || ''}}
100
101
- name: windows install sqlite3
0 commit comments