This commit is contained in:
Santiago Lo Coco 2022-03-01 17:52:10 -03:00
parent 6ede3f09c3
commit dd6037f6f5
1 changed files with 14 additions and 14 deletions

View File

@ -1,5 +1,12 @@
#!/usr/bin/env bash #!/usr/bin/env bash
getInputs() {
gpgPrivateKey="$INPUT_GPGPRIVATEKEY"
gpgPublicKey="$INPUT_GPGPUBLICKEY"
gpgPassphrase="$INPUT_GPGPASSPHRASE"
pkgDir="$INPUT_PKGDIR"
}
addUser() { addUser() {
useradd calbuilder -m useradd calbuilder -m
echo "calbuilder ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers echo "calbuilder ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
@ -70,6 +77,13 @@ namcapAnalysis() {
fi fi
} }
exportFile() {
echo "::set-output name=$1::$2"
if [ "$inBaseDir" = false ]; then
mv "$pkgFile" /github/workspace
fi
}
exportPackageFiles() { exportPackageFiles() {
sudo -u calbuilder makepkg --printsrcinfo > .SRCINFO sudo -u calbuilder makepkg --printsrcinfo > .SRCINFO
exportFile "srcInfo" ".SRCINFO" exportFile "srcInfo" ".SRCINFO"
@ -84,20 +98,6 @@ exportPackageFiles() {
fi fi
} }
exportFile() {
echo "::set-output name=$1::$2"
if [ "$inBaseDir" = false ]; then
mv "$pkgFile" /github/workspace
fi
}
getInputs() {
gpgPrivateKey="$INPUT_GPGPRIVATEKEY"
gpgPublicKey="$INPUT_GPGPUBLICKEY"
gpgPassphrase="$INPUT_GPGPASSPHRASE"
pkgDir="$INPUT_PKGDIR"
}
runScript() { runScript() {
set -euo pipefail set -euo pipefail