Jixun
2 years ago
2 changed files with 23 additions and 19 deletions
@ -0,0 +1,14 @@ |
|||||
|
#!/bin/sh |
||||
|
|
||||
|
set -ex |
||||
|
|
||||
|
cd "$(git rev-parse --show-toplevel)" |
||||
|
|
||||
|
URL_BASE="$DRONE_GITEA_SERVER/api/packages/${DRONE_REPO_NAMESPACE}/generic/${DRONE_REPO_NAME}-build" |
||||
|
|
||||
|
for ZIP_NAME in *.zip; do |
||||
|
UPLOAD_URL="${URL_BASE}/${DRONE_BUILD_NUMBER}/${ZIP_NAME}" |
||||
|
sha256sum "${ZIP_NAME}" |
||||
|
curl -sLifu "um-release-bot:$GITEA_API_KEY" -T "${ZIP_NAME}" "${UPLOAD_URL}" |
||||
|
echo "Uploaded to: ${UPLOAD_URL}" |
||||
|
done |
Loading…
Reference in new issue