react to http response
Some checks failed
ci/woodpecker/pr/ci Pipeline was successful
ci/woodpecker/pr/test-image Pipeline failed

This commit is contained in:
OCram85 2024-05-14 09:15:29 +02:00
parent 774235da7f
commit fda9fb5553
2 changed files with 18 additions and 3 deletions

View File

@ -6,7 +6,7 @@
<p align="center">
<a href="https://gitea.ocram85.com/plugins/gitea-package/">
<img
src="/plugins/gitea-package/raw/branch/master/assets/social-logo.png"
src="/plugins/gitea-package/raw/branch/main/assets/social-logo.png"
alt="gitea-package"
>
</a>
@ -21,8 +21,8 @@
</p>
<p align="center">
<a href="https://drone.ocram85.com/plugins/gitea-package">
<img src="https://drone.ocram85.com/api/badges/plugins/gitea-package/status.svg" alt="Main Branch Build Status">
<a href="https://ci.ocram85.com/plugins/gitea-package" target="_blank">
<img src="https://ci.ocram85.com/api/badges/plugins/gitea-package/status.svg" alt="Main Branch Build Status">
</a>
</p>

View File

@ -48,11 +48,26 @@ showSettings() {
}
uploadArtifact() {
say "Starting file upload..."
cout=$(curl --output /dev/null --write-out "%{http_code}" \
--user "$PLUGIN_USER:$PLUGIN_PASSWORD" \
--upload-file "$PLUGIN_FILE_SOURCE" \
"$CI_FORGE_URL/api/packages/$PLUGIN_OWNER/generic/$PLUGIN_PACKAGE_NAME/$PLUGIN_PACKAGE_VERSION/$PLUGIN_FILE_NAME")
say "Curl output is: $cout" "uploadArtifact"
if [ "$cout" = "201" ]; then
say "Upload sucessfully finished." "uploadArtifact"
exit 0
elif [ "$cout" = "400" ]; then
sayE "Upload failed! (Bad Request)" "uploadArtifact"
exit 1
elif [ "$cout" = "409" ]; then
sayW "A file with the same name exist already in the package." "uploadArtifact"
exit 1
else
sayE "Unknown upload response! ($cout)" "uploadArtifact"
exit 1
fi
}
main() {