3 Commits

Author SHA1 Message Date
Gitea Actions
1d61546765 Update manifest version to 4.0.3 [▶️] 2025-12-09 19:21:11 +00:00
43cf733f72 Merge branch 'main' of https://git.icc.gg/ivancarlos/ddnsonroute53
All checks were successful
Build, Push, Publish / Build & Release (push) Successful in 1m17s
2025-12-09 16:20:47 -03:00
7613c3765d approved 2025-12-09 16:20:33 -03:00
2 changed files with 7 additions and 7 deletions

View File

@@ -229,20 +229,20 @@ jobs:
cat release_payload.json cat release_payload.json
# Create Release # Create Release
RESPONSE=$(curl -s -X POST "${{ gitea.api_url }}/repos/${{ gitea.repository }}/releases" \ curl -s -X POST "${{ gitea.api_url }}/repos/${{ gitea.repository }}/releases" \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
-H "Content-Type: application/json" \ -H "Content-Type: application/json" \
-d @release_payload.json) -d @release_payload.json > api_response.json
echo "DEBUG: API Response:" echo "DEBUG: API Response:"
echo "$RESPONSE" || true cat api_response.json || true
RELEASE_ID=$(echo "$RESPONSE" | jq -r .id) RELEASE_ID=$(jq -r .id api_response.json)
echo "RELEASE_ID=$RELEASE_ID" >> "$GITHUB_OUTPUT" echo "RELEASE_ID=$RELEASE_ID" >> "$GITHUB_OUTPUT"
if [ "$RELEASE_ID" == "null" ] || [ -z "$RELEASE_ID" ]; then if [ "$RELEASE_ID" == "null" ] || [ -z "$RELEASE_ID" ]; then
echo "Failed to create release. Response:" echo "Failed to create release. Response content:"
echo "$RESPONSE" cat api_response.json
exit 1 exit 1
fi fi

View File

@@ -1,4 +1,4 @@
{ {
"version": "4.0.2", "version": "4.0.3",
"author": "Ivan Carlos" "author": "Ivan Carlos"
} }