Disable debug package so the main package publishes correctly
All checks were successful
Mirror to GitHub / mirror (push) Successful in 5s
Build and publish package / package (push) Successful in 2m34s

makepkg's debug split produced a -debug pkg; the upload's head -1 could
grab it instead of the main package. !debug yields a single package.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Breadway 2026-06-13 23:00:52 +08:00
parent d29ff9f8c9
commit f30e215eab

View file

@ -10,7 +10,7 @@ license=('MIT')
# Some Rust deps (ring/mlua) build vendored C/asm into static archives; makepkg's # Some Rust deps (ring/mlua) build vendored C/asm into static archives; makepkg's
# default -flto=auto emits GCC LTO bitcode the Rust (lld) link cannot read, # default -flto=auto emits GCC LTO bitcode the Rust (lld) link cannot read,
# causing undefined-symbol errors. Disable LTO. # causing undefined-symbol errors. Disable LTO.
options=(!lto) options=(!lto !debug)
depends=('gtk4' 'gtk4-layer-shell') depends=('gtk4' 'gtk4-layer-shell')
optdepends=( optdepends=(
'ollama: local AI note classification' 'ollama: local AI note classification'