From 0e082a0c204072241eb8108f15b7e12f8f3e760e Mon Sep 17 00:00:00 2001 From: Simon Marsh Date: Sat, 27 May 2023 12:44:08 +0100 Subject: [PATCH] differentiate between auth user and package owner --- README.md | 1 + upload.sh | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e53a289..cbd3c0e 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ A small drone plugin to help with uploading packages to gitea. |package|Package name|(mandatory)| |version|Package version, may be a filename|(mandatory)| |user|username for authentication|burble| +|owner|owner of package|burble| |url|base URL of gitea|https://git.burble.dn42/api/packages| |filename|filename to upload|artifact name| diff --git a/upload.sh b/upload.sh index dd67f18..d7f85a1 100644 --- a/upload.sh +++ b/upload.sh @@ -14,6 +14,7 @@ fi BASE_URL=${PLUGIN_URL:-https://git.burble.dn42/api/packages} USER=${PLUGIN_USER:-burble} +OWNER=${PLUGIN_OWNER:-burble} FILENAME=${PLUGIN_FILENAME:-$PLUGIN_ARTIFACT} # version or token could be a filename @@ -36,7 +37,7 @@ TOKEN=$(maybe_from_file "$PLUGIN_TOKEN") # finally do the curl thing to upload the artifact url=$(printf '%s/%s/generic/%s/%s/%s' \ - "$BASE_URL" "$USER" "$PLUGIN_PACKAGE" \ + "$BASE_URL" "$OWNER" "$PLUGIN_PACKAGE" \ "$VERSION" "$PLUGIN_ARTIFACT") curl --user "${USER}:${TOKEN}" --upload-file="$FILENAME" "$url"