#!/bin/bash function create-archive(){ mkdir release envsubst < module.json.template > ./module.json cp ./module.json ./src/module.json zip -r -9 ./release/module.zip ./src/* } function create-release(){ if [[ -z "${TAG}" ]]; then echo "TAG key is not set" exit fi RESPONSE=$(curl \ -X 'POST' \ -Url "https://gitea.kdiva.ru/api/v1/repos/${DRONE_REPO}/releases" \ -H 'accept: application/json' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer 10e4af53e553aacb905766512e36487492d61a66' \ -d '{ "draft": false, "name": "'"$1"'", "prerelease": false, "tag_name": "'"$1"'" }') } function upload-attachments(){ RELEASE_ID=$(jq -r '.id' <<< $RESPONSE) echo "RELEASE_ID is ${RELEASE_ID}" curl \ -vv \ -X 'POST' \ -Url "https://gitea.kdiva.ru/api/v1/repos/${DRONE_REPO}/releases/${RELEASE_ID}/assets" \ -H 'accept: application/json' \ -H 'Content-Type: multipart/form-data' \ -H 'Authorization: Bearer 10e4af53e553aacb905766512e36487492d61a66' \ -F "attachment=@$1" } function vars() { echo "DRONE_SEMVER $DRONE_SEMVER" echo "DRONE_REPO_LINK $DRONE_REPO_LINK" echo "DRONE_TAG $DRONE_TAG" echo "KEY $KEY" echo "OTHER_KEY $OTHER_KEY" RELEASES=$(curl -X GET -Url https://gitea.kdiva.ru/api/v1/repos/${DRONE_REPO}/releases) RELEASES_IDS=$(jq -r '.[].id' <<< $RELEASES) if [[ -z "${RELEASES_IDS}" ]]; then echo "RELEASES_IDS id NULL" else echo "RELEASES_IDS id ${RELEASES_IDS}" fi }