We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ab3116 commit 897b401Copy full SHA for 897b401
.github/workflows/test.yml
@@ -46,12 +46,13 @@ jobs:
46
run: |
47
SQLEAN_VERSION=0.27.2
48
case "${{ runner.os }}" in
49
- Linux) OS_SLUG=linux-amd64 ;;
50
- macOS) OS_SLUG=darwin-amd64 ;;
+ Linux) OS_SLUG=linux-x86 ;;
+ macOS) OS_SLUG=macos-x86 ;;
51
esac
52
- curl -sL https://github.com/nalgeon/sqlean/releases/download/${SQLEAN_VERSION}/sqlean-${OS_SLUG}.tar.gz | tar xz
53
- echo "$PWD/bin" >> $GITHUB_PATH
54
- sqlean --version
+ curl -sL -o sqlean-${OS_SLUG}.zip \
+ https://github.com/nalgeon/sqlean/releases/download/${SQLEAN_VERSION}/sqlean-${OS_SLUG}.zipecho "$PWD/bin" >> $GITHUB_PATH
+ unzip -q sqlean-${OS_SLUG}.zip -d .
55
+ echo "$PWD" >> $GITHUB_PATH
56
57
- name: Set extension env
58
0 commit comments