fix: Use wild card to fetch any compression This will make my life easier if I change the compression later. One less place to worry.
1diff --git a/build.yml b/build.yml 2index ec137a9e850eb158ba0106c0bf8b3473f87e30ea..2be62583e5356e45710c64e272b2ad1def599b20 100644 3--- a/build.yml 4+++ b/build.yml 5@@ -24,5 +24,5 @@ make tar 6 - deploy: | 7 cd midr 8 sshopts="ssh -o StrictHostKeyChecking=no" 9- rsync --rsh="$sshopts" -rP *.tar.xz $deploy:/var/www/$target 10+ rsync --rsh="$sshopts" -rP *.tar.* $deploy:/var/www/$target 11