Skip to content

Commit 56d7811

Browse files
committed
fix: ci publish job missing webkit system deps
1 parent 56d1f3b commit 56d7811

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,15 @@ jobs:
2424
run: |
2525
sudo apt-get update -q
2626
sudo apt-get install -y \
27+
libwebkit2gtk-4.1-dev \
2728
libgtk-3-dev \
2829
libxcb-render0-dev \
2930
libxcb-shape0-dev \
3031
libxcb-xfixes0-dev \
3132
libxkbcommon-dev \
32-
libssl-dev
33+
libssl-dev \
34+
libappindicator3-dev \
35+
librsvg2-dev \
36+
patchelf
3337
3438
- run: cargo publish --workspace

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ members = [
99
]
1010

1111
[workspace.package]
12-
version = "0.27.0"
12+
version = "0.27.1"
1313
edition = "2024"
1414
rust-version = "1.85"
1515
license = "MIT"
@@ -20,10 +20,10 @@ categories = ["game-development", "multimedia::images", "command-line-utilitie
2020

2121
[workspace.dependencies]
2222
# Internal crates
23-
fastpack-core = { path = "crates/fastpack-core", version = "0.27.0" }
24-
fastpack-formats = { path = "crates/fastpack-formats", version = "0.27.0" }
25-
fastpack-compress = { path = "crates/fastpack-compress", version = "0.27.0" }
26-
fastpack-tauri = { path = "crates/fastpack-tauri/src-tauri", version = "0.27.0" }
23+
fastpack-core = { path = "crates/fastpack-core", version = "0.27.1" }
24+
fastpack-formats = { path = "crates/fastpack-formats", version = "0.27.1" }
25+
fastpack-compress = { path = "crates/fastpack-compress", version = "0.27.1" }
26+
fastpack-tauri = { path = "crates/fastpack-tauri/src-tauri", version = "0.27.1" }
2727

2828
# Error handling
2929
thiserror = "2"

0 commit comments

Comments
 (0)