Skip to content

Commit 54b2921

Browse files
workflow added pkg-config command
Signed-off-by: vaibhav <vaibhavmattoo1@gmail.com>
1 parent f99f85a commit 54b2921

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
name: Cross-compile and Upload Bitchat-TUI Release Assets
23

34
on:
@@ -65,20 +66,20 @@ jobs:
6566
run: |
6667
cat > Cross.toml <<'EOF'
6768
[target.x86_64-unknown-linux-musl]
68-
pre-build = ["apt-get update && apt-get install -y --no-install-recommends libdbus-1-dev"]
69+
pre-build = ["apt-get update && apt-get install -y --no-install-recommends libdbus-1-dev pkg-config"]
6970
7071
[target.aarch64-unknown-linux-musl]
7172
pre-build = [
7273
"dpkg --add-architecture arm64",
7374
"apt-get update",
74-
"apt-get install -y --no-install-recommends libdbus-1-dev:arm64",
75+
"apt-get install -y --no-install-recommends libdbus-1-dev:arm64 pkg-config",
7576
]
7677
7778
[target.armv7-unknown-linux-musleabihf]
7879
pre-build = [
7980
"dpkg --add-architecture armhf",
8081
"apt-get update",
81-
"apt-get install -y --no-install-recommends libdbus-1-dev:armhf",
82+
"apt-get install -y --no-install-recommends libdbus-1-dev:armhf pkg-config",
8283
]
8384
EOF
8485

0 commit comments

Comments
 (0)