Skip to content

Commit 1ddebbb

Browse files
Antonio Maioloclaude
andcommitted
fix(release): correct sqlite-vec download URL to .tar.gz
The sqlite-vec Windows release is distributed as .tar.gz, not .zip. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 4a46eea commit 1ddebbb

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,12 +184,13 @@ jobs:
184184
shell: pwsh
185185
run: |
186186
# Download MSVC-compiled vec0.dll from sqlite-vec releases
187-
$vec0Url = "https://github.com/asg017/sqlite-vec/releases/download/v0.1.6/sqlite-vec-0.1.6-loadable-windows-x86_64.zip"
188-
$zipPath = "$env:RUNNER_TEMP\sqlite-vec.zip"
187+
$vec0Url = "https://github.com/asg017/sqlite-vec/releases/download/v0.1.6/sqlite-vec-0.1.6-loadable-windows-x86_64.tar.gz"
188+
$tarPath = "$env:RUNNER_TEMP\sqlite-vec.tar.gz"
189189
$extractPath = "$env:RUNNER_TEMP\sqlite-vec"
190190
191-
Invoke-WebRequest -Uri $vec0Url -OutFile $zipPath
192-
Expand-Archive -Path $zipPath -DestinationPath $extractPath
191+
Invoke-WebRequest -Uri $vec0Url -OutFile $tarPath
192+
New-Item -ItemType Directory -Path $extractPath -Force
193+
tar -xzf $tarPath -C $extractPath
193194
194195
# Find where sqlite_vec package is installed and copy vec0.dll there
195196
$sitePackages = poetry run python -c "import site; print(site.getsitepackages()[0])"

0 commit comments

Comments
 (0)