add upload command #3

Merged
OCram85 merged 15 commits from add/uploadStep into main 2024-05-14 10:24:21 +02:00
Showing only changes of commit 774235da7f - Show all commits

View File

@ -48,7 +48,7 @@ showSettings() {
}
uploadArtifact() {
cout=$(curl -v --output /dev/null --write-out "%{http_code}" \
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")
@ -59,8 +59,8 @@ main() {
if [ -n "$PLUGIN_DEBUG" ]; then
sayW "Debug mode enabled."
showSettings
sayW "Available ENV vars:"
showENV
#sayW "Available ENV vars:"
#showENV
fi
uploadArtifact
}