Skip to content

Commit e2fb53c

Browse files
doublegateclaude
andcommitted
fix(ci): add SQLCipher dependency to Release workflow
The wraith-chat crate requires SQLCipher for its encrypted database. The Release workflow Test Suite job was missing libsqlcipher-dev, causing the v1.6.0 release build to fail with linker errors. Added libsqlcipher-dev to match the CI workflow configuration. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 72a21e2 commit e2fb53c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133
- name: Install system dependencies (Ubuntu)
134134
run: |
135135
sudo apt-get update
136-
sudo apt-get install -y libglib2.0-dev libwebkit2gtk-4.1-dev librsvg2-dev patchelf libgtk-3-dev libayatana-appindicator3-dev
136+
sudo apt-get install -y libglib2.0-dev libwebkit2gtk-4.1-dev librsvg2-dev patchelf libgtk-3-dev libayatana-appindicator3-dev libsqlcipher-dev
137137
138138
- name: Install Rust toolchain
139139
uses: dtolnay/rust-toolchain@stable

0 commit comments

Comments
 (0)