mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
947 B
28 lines
947 B
#!/usr/bin/env bash |
|
|
|
RELEASE_DATA=$(curl --data "version=${SIGN_VERSION}" --data "password=${SIGN_SERVICE_PASSWORD}" -X POST "${SIGN_SERIVCE_URL}" ) |
|
echo $RELEASE_DATA |
|
RELEASE_ID=$(echo $RELEASE_DATA| jq -r ".id") |
|
|
|
function uploadfile() { |
|
FILE=$1 |
|
CTYPE=$(file -b --mime-type $FILE) |
|
|
|
sleep 1 |
|
curl -H "Authorization: token ${GITHUB_TOKEN}" -H "Content-Type: ${CTYPE}" --data-binary @$FILE "https://uploads.github.com/repos/v2fly/v2ray-core/releases/${RELEASE_ID}/assets?name=$(basename $FILE)" |
|
sleep 1 |
|
} |
|
|
|
function upload() { |
|
FILE=$1 |
|
DGST=$1.dgst |
|
openssl dgst -md5 $FILE | sed 's/([^)]*)//g' >> $DGST |
|
openssl dgst -sha1 $FILE | sed 's/([^)]*)//g' >> $DGST |
|
openssl dgst -sha256 $FILE | sed 's/([^)]*)//g' >> $DGST |
|
openssl dgst -sha512 $FILE | sed 's/([^)]*)//g' >> $DGST |
|
uploadfile $FILE |
|
uploadfile $DGST |
|
} |
|
|
|
curl "https://raw.githubusercontent.com/v2fly/Release/master/v2fly/${SIGN_VERSION}.Release" > Release |
|
upload Release
|
|
|