Compare commits

..

No commits in common. "7cf113eaffe3665438bcaea7b776b6edb78ed6b0" and "519a089684836fd3865796bdf4f3ecaa2e75d1cb" have entirely different histories.

3 changed files with 27 additions and 35 deletions

View File

@ -81,40 +81,22 @@ jobs:
VERSION=${{ steps.get_version.outputs.VERSION }}
cd .pio/build/esp32dev
# Debug-Ausgaben
echo "Debug: Checking API URL..."
echo "GITEA_API_URL=${GITEA_API_URL}"
# Prepare files for upload
FILES=""
for file in upgrade_filaman_firmware_v${VERSION}.bin upgrade_filaman_website_v${VERSION}.bin filaman_full_${VERSION}.bin; do
if [ -f "$file" ]; then
FILES="$FILES -a $file"
echo "Debug: Found file: $file"
fi
done
# Check if tag exists
if ! git rev-parse "v${VERSION}" >/dev/null 2>&1; then
echo "Debug: Creating new tag v${VERSION}"
# Create tag if it doesn't exist
git tag -a "v${VERSION}" -m "Release ${VERSION}"
git push origin "v${VERSION}"
else
echo "Debug: Tag v${VERSION} already exists"
fi
# Test API connection
echo "Debug: Testing API connection..."
TEST_RESPONSE=$(curl -s -w "\n%{http_code}" -H "Authorization: token ${GITEA_TOKEN}" "${GITEA_API_URL}/api/v1/version")
TEST_STATUS=$(echo "$TEST_RESPONSE" | tail -n1)
if [ "$TEST_STATUS" != "200" ]; then
echo "Error: Cannot connect to Gitea API"
echo "Response: $TEST_RESPONSE"
exit 1
fi
# Create Gitea release using API
echo "Debug: Creating release..."
RELEASE_DATA="{
\"tag_name\": \"v${VERSION}\",
\"name\": \"v${VERSION}\",
@ -122,19 +104,37 @@ jobs:
}"
# Create release and capture HTTP status
RESPONSE=$(curl -v -s -w "\n%{http_code}" -X POST \
RESPONSE=$(curl -s -w "%{http_code}" -X POST \
-H "Authorization: token ${GITEA_TOKEN}" \
-H "Content-Type: application/json" \
-d "$RELEASE_DATA" \
"${GITEA_API_URL}/api/v1/repos/${GITEA_OWNER}/${GITEA_REPO}/releases")
HTTP_STATUS=$(echo "$RESPONSE" | tail -n1)
RESPONSE_BODY=$(echo "$RESPONSE" | head -n -1)
echo "Debug: HTTP Status: $HTTP_STATUS"
echo "Debug: Response Body: $RESPONSE_BODY"
HTTP_STATUS=${RESPONSE: -3}
RESPONSE_BODY=${RESPONSE:0:-3}
if [ "$HTTP_STATUS" != "201" ]; then
echo "Fehler beim Erstellen des Releases: $RESPONSE_BODY"
exit 1
fi
fi
# Extract release ID from response
RELEASE_ID=$(echo "$RESPONSE_BODY" | jq -r .id)
# Upload assets
for file in upgrade_filaman_firmware_v${VERSION}.bin upgrade_filaman_website_v${VERSION}.bin filaman_full_${VERSION}.bin; do
if [ -f "$file" ]; then
echo "Uploading $file..."
UPLOAD_RESPONSE=$(curl -s -w "%{http_code}" -X POST \
-H "Authorization: token ${GITEA_TOKEN}" \
-H "Content-Type: application/octet-stream" \
--data-binary @"$file" \
"${GITEA_API_URL}/api/v1/repos/${GITEA_OWNER}/${GITEA_REPO}/releases/${RELEASE_ID}/assets?name=${file}")
UPLOAD_STATUS=${UPLOAD_RESPONSE: -3}
if [ "$UPLOAD_STATUS" != "201" ]; then
echo "Fehler beim Upload von $file"
exit 1
fi
fi
done

View File

@ -1,13 +1,5 @@
# Changelog
## [1.3.23] - 2025-02-21
### Changed
- update webpages for version v1.3.23
### Fixed
- workflow: enhance Gitea release process with debug outputs and API connection checks
## [1.3.22] - 2025-02-21
### Added
- workflow: improve Gitea release process with additional environment variables and error handling

View File

@ -9,7 +9,7 @@
; https://docs.platformio.org/page/projectconf.html
[common]
version = "1.3.23"
version = "1.3.22"
#test