mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-02-16 19:35:39 +00:00
TEST: tesing main release on Gitea [skip ci]
This commit is contained in:
parent
dd99ad9c95
commit
cc9ed43c3f
4
.github/workflows/main-gitea.yml
vendored
4
.github/workflows/main-gitea.yml
vendored
|
@ -139,6 +139,8 @@ jobs:
|
||||||
TAG="${{ env.REL_VER }}"
|
TAG="${{ env.REL_VER }}"
|
||||||
RELEASE_BODY="$(cat body.md)"
|
RELEASE_BODY="$(cat body.md)"
|
||||||
|
|
||||||
|
echo -e "[DEBUG] Release Body:\n$RELEASE_BODY"
|
||||||
|
|
||||||
# Create a release using curl and capture the release ID
|
# Create a release using curl and capture the release ID
|
||||||
release_response=$(curl -X POST \
|
release_response=$(curl -X POST \
|
||||||
-H "Authorization: token ${GITEA_TOKEN}" \
|
-H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
|
@ -146,6 +148,8 @@ jobs:
|
||||||
-d "{\"tag_name\":\"$TAG\",\"name\":\"$RELEASE_NAME\",\"body\":\"$RELEASE_BODY\"}" \
|
-d "{\"tag_name\":\"$TAG\",\"name\":\"$RELEASE_NAME\",\"body\":\"$RELEASE_BODY\"}" \
|
||||||
"http://$GITEA_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases")
|
"http://$GITEA_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases")
|
||||||
|
|
||||||
|
echo -e "[DEBUG] Release response:\n$release_response"
|
||||||
|
|
||||||
# Extract the release ID from the response
|
# Extract the release ID from the response
|
||||||
release_id=$(echo $release_response | jq -r '.id')
|
release_id=$(echo $release_response | jq -r '.id')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue