From 7386b995cd3d72727d5b07953ee23fa1791a40fb Mon Sep 17 00:00:00 2001 From: Simon Marsh Date: Sat, 27 May 2023 12:36:10 +0100 Subject: [PATCH] initial commit --- .drone.yml | 29 +++++++++++++++++++++++++++++ Dockerfile | 5 +++++ README.md | 15 ++++++++++++++- upload.sh | 45 +++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 93 insertions(+), 1 deletion(-) create mode 100644 .drone.yml create mode 100644 Dockerfile create mode 100644 upload.sh diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..b045bac --- /dev/null +++ b/.drone.yml @@ -0,0 +1,29 @@ +--- +kind: pipeline +type: docker +name: docker-build + +steps: + +- name: docker + image: plugins/docker + settings: + registry: git.burble.dn42 + repo: git.burble.dn42/burble.dn42/drone-gitea-pkg-plugin + tags: latest + username: burble + password: + from_secret: TOKEN + +--- +kind: secret +name: TOKEN +get: + path: burble.dn42/kv/data/drone/git.burble.dn42 + name: artifact-token + +--- +kind: signature +hmac: d6a5d74f6b48bb0108f40808e9b88564a5a808ea8cb30e5c4ce17a59f67f1095 + +... diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f794c0b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM alpine +RUN apk -Uuv add bash curl +ADD upload.sh /usr/local/bin/upload.sh +RUN chmod +x /usr/local/bin/upload.sh +ENTRYPOINT /usr/local/bin/upload.sh diff --git a/README.md b/README.md index e61cf86..e53a289 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,16 @@ # drone-gitea-pkg-plugin -A small drone plugin to help with uploading packages to gitea. \ No newline at end of file +[![Build Status](https://ci.burble.dn42/api/badges/burble.dn42/drone-gitea-pkg-plugin/status.svg?ref=refs/heads/main)](https://ci.burble.dn42/burble.dn42/drone-gitea-pkg-plugin) + +A small drone plugin to help with uploading packages to gitea. + +|setting|desc|default| +|-------|----|-------| +|token|Access token for authentication, may be a filename|(mandatory)| +|artifact|Name of artifact in gitea|(mandatory)| +|package|Package name|(mandatory)| +|version|Package version, may be a filename|(mandatory)| +|user|username for authentication|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 new file mode 100644 index 0000000..dd67f18 --- /dev/null +++ b/upload.sh @@ -0,0 +1,45 @@ +#!/bin/bash -e +########################################################################## + +# check mandatory parameters have been provided + +if [ -z "$PLUGIN_TOKEN" ] || [ -z "$PLUGIN_ARTIFACT" ] || \ + [ -z "$PLUGIN_PACKAGE" ] || [ -z "$PLUGIN_VERSION" ] +then + echo 'token, artifact, package and version are mandatory settings' + exit 1 +fi + +# other optional parameters + +BASE_URL=${PLUGIN_URL:-https://git.burble.dn42/api/packages} +USER=${PLUGIN_USER:-burble} +FILENAME=${PLUGIN_FILENAME:-$PLUGIN_ARTIFACT} + +# version or token could be a filename + +function maybe_from_file +{ + local var="$1" + if [ -r "$var" ] + then + cat "$var" + else + echo "$var" + fi +} + +VERSION=$(maybe_from_file "$PLUGIN_VERSION") +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" \ + "$VERSION" "$PLUGIN_ARTIFACT") + +curl --user "${USER}:${TOKEN}" --upload-file="$FILENAME" "$url" + +########################################################################## +# end of file