Compare commits

..

2 Commits

Author SHA1 Message Date
Yi-Ting Shih
7fcdd86106 Fix: delete installkernel
All checks were successful
Build package / build-package (push) Successful in 42s
2026-01-21 16:08:06 +08:00
506e1a1cf8 Feat: add gpg sign
All checks were successful
Build package / build-package (push) Successful in 13s
2025-07-28 03:07:52 +08:00
3 changed files with 4 additions and 20 deletions

View File

@@ -11,3 +11,5 @@ jobs:
with: with:
minio-accesskey: ${{ secrets.MINIO_ACCESSKEY }} minio-accesskey: ${{ secrets.MINIO_ACCESSKEY }}
minio-secretkey: ${{ secrets.MINIO_SECRETKEY }} minio-secretkey: ${{ secrets.MINIO_SECRETKEY }}
gpg-password: ${{ secrets.GPG_PASSWORD }}
gpg-keygrip: ${{ secrets.GPG_KEYGRIP }}

19
.gitignore vendored
View File

@@ -1,19 +0,0 @@
*/
.*.swp
*.pkg.tar.xz
src/
pkg/
*.tar
*.tar.bz2
*.tar.xz
*.tar.gz
*.tgz
*.txz
*.tbz
*.tbz2
*.zip
*.run
*.7z
*.rar
*.deb
*.pkg.tar.xz.sig

View File

@@ -3,7 +3,7 @@
# Contributor: Jochen Schalanda <jochen+aur (at) schalanda.name> # Contributor: Jochen Schalanda <jochen+aur (at) schalanda.name>
pkgname=debianutils pkgname=debianutils
pkgver=5.23 pkgver=5.23
pkgrel=1 pkgrel=2
pkgdesc="Miscellaneous utilities specific to Debian" pkgdesc="Miscellaneous utilities specific to Debian"
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
url="https://tracker.debian.org/pkg/debianutils" url="https://tracker.debian.org/pkg/debianutils"
@@ -27,4 +27,5 @@ package() {
echo 'Remove files of "run-parts" package...' echo 'Remove files of "run-parts" package...'
cd - cd -
find "${pkgdir}" -name run-parts* -delete find "${pkgdir}" -name run-parts* -delete
find "${pkgdir}" -name installkernel* -delete
} }