ci: skip upload step when api key is empty (usually happens for PR)
continuous-integration/drone/pr Build was killed Details

This commit is contained in:
Jixun 2022-11-27 00:43:37 +00:00
parent 1fc7142957
commit 26e50473f2
1 changed files with 9 additions and 4 deletions

View File

@ -4,6 +4,11 @@ set -ex
cd "$(git rev-parse --show-toplevel)"
if [ -z "$GITEA_API_KEY" ]; then
echo "GITEA_API_KEY is empty, skip upload."
exit 0
fi
URL_BASE="$DRONE_GITEA_SERVER/api/packages/${DRONE_REPO_NAMESPACE}/generic/${DRONE_REPO_NAME}-build"
for ZIP_NAME in *.zip; do