From 49c70313156f0fc91342be5c3b601e44aef0eff8 Mon Sep 17 00:00:00 2001 From: nevaforget Date: Mon, 20 Apr 2026 09:39:11 +0200 Subject: [PATCH] fix(ci): drop -d from makepkg so makedepends get installed makepkg -sfd skipped dependency checks, preventing `-s` from pulling in rust/cargo (moonlock/moongreet/moonset) and go (sshfsc). Builds failed with `cargo: command not found`. Remove `-d`; `-s` now installs makedepends via pacman before the build. --- .gitea/workflows/build-and-publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build-and-publish.yaml b/.gitea/workflows/build-and-publish.yaml index cbb2482..b8e1e91 100644 --- a/.gitea/workflows/build-and-publish.yaml +++ b/.gitea/workflows/build-and-publish.yaml @@ -33,7 +33,7 @@ jobs: echo "==> Building $pkg" cd "$pkg" - makepkg -sfd --noconfirm + makepkg -sf --noconfirm # Find the built package file PKG_FILE=$(ls -t *.pkg.tar.zst 2>/dev/null | head -1)