Update importPrivateKey(), add getInputs() and fix bugs
This commit is contained in:
parent
5a206374b0
commit
3814baa026
29
pkgbuild.sh
29
pkgbuild.sh
|
@ -7,16 +7,19 @@ setPermissions() {
|
||||||
}
|
}
|
||||||
|
|
||||||
importPrivateKey() {
|
importPrivateKey() {
|
||||||
echo "$INPUT_GPGPRIVATEKEY" > private.key
|
echo "$gpgPrivateKey" > private.key
|
||||||
sudo -u nobody gpg --batch --pinentry-mode loopback --passphrase "$INPUT_GPGPASSPHRASE" --import private.key
|
gpgFlags=("--batch" "--pinentry-mode" "loopback" "--passphrase")
|
||||||
|
gpg "${gpgFlags[@]}" "$gpgPassphrase" --import private.key
|
||||||
rm private.key
|
rm private.key
|
||||||
sed -i -e "s/gpg/gpg --batch --pinentry-mode loopback --passphrase \"$INPUT_GPGPASSPHRASE\"/" /usr/share/makepkg/integrity/generate_signature.sh
|
sedCommand="gpg ${gpgFlags[*]} \"$gpgPassphrase\""
|
||||||
|
makepkgSigFile="/usr/share/makepkg/integrity/generate_signature.sh"
|
||||||
|
sed -i -e "s/gpg/$sedCommand/" $makepkgSigFile
|
||||||
}
|
}
|
||||||
|
|
||||||
buildPackage() {
|
buildPackage() {
|
||||||
if [ -n "$INPUT_GPGPRIVATEKEY" ] && [ -n "$INPUT_GPGPUBLICKEY" ]; then
|
if [ -n "$gpgPrivateKey" ] && [ -n "$gpgPublicKey" ]; then
|
||||||
importPrivateKey
|
importPrivateKey
|
||||||
sudo -u nobody makepkg -s --sign --key "$INPUT_GPGPUBLICKEY" --noconfirm
|
sudo -u nobody makepkg -s --sign --key "$gpgPublicKey" --noconfirm
|
||||||
else
|
else
|
||||||
sudo -u nobody makepkg -s --noconfirm
|
sudo -u nobody makepkg -s --noconfirm
|
||||||
fi
|
fi
|
||||||
|
@ -60,16 +63,28 @@ printWarnings() {
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getInputs() {
|
||||||
|
gpgPrivateKey="$INPUT_GPGPRIVATEKEY"
|
||||||
|
gpgPublicKey="$INPUT_GPGPUBLICKEY"
|
||||||
|
gpgPassphrase="$INPUT_GPGPASSPHRASE"
|
||||||
|
pkgDir="$INPUT_PKGDIR"
|
||||||
|
}
|
||||||
|
|
||||||
runScript() {
|
runScript() {
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
pacman -Syu --noconfirm base-devel
|
pacman -Syu --noconfirm base-devel
|
||||||
|
|
||||||
|
getInputs
|
||||||
setPermissions
|
setPermissions
|
||||||
|
|
||||||
baseDir="$PWD"
|
baseDir="$PWD"
|
||||||
[ -n "$INPUT_PKGDIR" ] && inBaseDir=true || inBaseDir=false
|
if [ -n "$pkgDir" ] && [ "$pkgDir" != "." ]; then
|
||||||
cd "${INPUT_PKGDIR:-.}"
|
inBaseDir=false
|
||||||
|
cd "$pkgDir"
|
||||||
|
else
|
||||||
|
inBaseDir=true
|
||||||
|
fi
|
||||||
oldFiles=$(find -H "$PWD" -not -path '*.git*')
|
oldFiles=$(find -H "$PWD" -not -path '*.git*')
|
||||||
|
|
||||||
buildPackage
|
buildPackage
|
||||||
|
|
Loading…
Reference in New Issue