module-packer/pack.sh

39 lines
885 B
Bash
Executable File

#!/bin/bash
if [ -f ".env" ]
then
source .env
fi
echo ${REG_LOGIN}
# TODO: implement .modignore processing from current dir and from src
rm -rf .git
md5=`find . -type f -exec md5sum {} + | awk '{print $1}' | sort | md5sum | awk '{ print $1 }'`
if [ -f "module.json" ]
then
mod_name=`cat module.json | jq ".name" -r`
mod_version=`cat module.json | jq ".version" -r`
mod_title=`cat module.json | jq ".title" -r`
else
echo "Moduleinfo read failed"
exit 9
fi
echo "{
\"name\":\"${mod_name}\",
\"version\":\"${mod_version}\",
\"title\":\"${mod_title}\",
\"hash\":\"${md5}\"
}" > module.json
zip_name="mod_$mod_name-v$mod_version.zip"
rm -f mod_*.zip
zip -r /tmp/$zip_name .
curl --user ${REG_LOGIN}:${REG_PASSWORD} \
--upload-file /tmp/${zip_name} \
https://mxfox.ru/api/packages/${REG_REPOS}/generic/${mod_name}/${mod_version}/${mod_name}.zip