diff options
Diffstat (limited to 'build.yml')
-rw-r--r-- | build.yml | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -16,8 +16,11 @@ tasks: - setup: | echo "PACKAGER_PRIVKEY=\"/home/build/.abuild/mail@gabrielgio.me-62ddc4dc.rsa\"" > ~/.abuild/abuild.conf - build: | - cd apkbuilds/"${packages[@]}" - abuild -r + for pkg in "${packages[@]}"; do + cd apkbuilds/"$pkg" + abuild -r + cd .. + done - deploy: | sshopts="ssh -o StrictHostKeyChecking=no" rsync --rsh="$sshopts" -rP ~/packages/apkbuilds/ $deploy:/var/www/$target |