From f3822c32f290810d472da8b431d110f78b54104f Mon Sep 17 00:00:00 2001 From: Cole Deck Date: Mon, 10 Oct 2022 21:56:38 -0500 Subject: [PATCH] Publish release --- release.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/release.sh b/release.sh index b9b38ab..3f625d6 100644 --- a/release.sh +++ b/release.sh @@ -32,3 +32,18 @@ OUT=$(curl -X 'POST' \ -H 'Content-Type: multipart/form-data' \ -F 'attachment=@'release-$COMMIT.zip';type=application/x-zip-compressed') +URL=$(echo $OUT | cut -d',' -f 6 | cut -d\" -f4) +echo $URL +DATA='{ + "body": "Autogenerated release", + "draft": false, + "name": "Development release", + "prerelease": true, + "tag_name": "testing", + "target_commitish": "'$COMMIT'" +}' +OUT=$(curl -X 'POST' \ + 'https://git.deck.sh/api/v1/repos/Interfaz/ff/releases/'$ID'?token='$TOKEN'' \ + -H 'accept: application/json' \ + -H 'Content-Type: application/json' \ + -d "$DATA") \ No newline at end of file