Private
Public Access
1
0

fix: Remove apk-package from APKBUILD sources (directory not file)
Some checks failed
CI/CD Pipeline / Code Format (push) Successful in 12s
CI/CD Pipeline / Build Debian Package (push) Successful in 1m57s
CI/CD Pipeline / Build RPM Package (push) Successful in 3m23s
CI/CD Pipeline / Build Alpine Package (push) Failing after 19s
CI/CD Pipeline / Build Arch Package (push) Successful in 2m16s

This commit is contained in:
2026-04-14 00:19:54 +00:00
parent 5e04db512a
commit 4e71bb6cf2

6
build-alpine.sh Executable file → Normal file
View File

@ -54,10 +54,12 @@ url="https://gitea.internal/linux-patch-api"
arch="x86_64"
license="MIT"
depends="openrc"
source="apk-package"
source=""
package() {
cp -r "$srcdir"/apk-package/* "$pkgdir"/
# Copy from workspace path (not srcdir - apk-package is created dynamically)
cp -r /workspace/echo/linux_patch_api/apk-package/* "$pkgdir"/
}
}
EOF