Compare commits

..

No commits in common. "67027840f48344d62909296133a46146cc53deff" and "7ae26fb0a91a5dc8d0c99b29b6efae37dbf926d0" have entirely different histories.

3 changed files with 3 additions and 9 deletions

View File

@ -95,9 +95,8 @@ jobs:
"${API_URL}/repos/${REPO}/releases")
RELEASE_ID=$(echo "$RESPONSE" | grep -o '"id":[0-9]*' | cut -d':' -f2 | head -n1)
UPLOAD_URL=$(echo "$RESPONSE" | grep -o '"upload_url":"[^"]*' | cut -d':' -f2- | tr -d '"')
if [ -n "$RELEASE_ID" ]; then
if [ -n "$RELEASE_ID"; then
echo "Release created with ID: $RELEASE_ID"
# Upload files
@ -108,7 +107,7 @@ jobs:
-H "Authorization: token ${TOKEN}" \
-H "Content-Type: application/octet-stream" \
--data-binary "@.pio/build/esp32dev/$file" \
"${UPLOAD_URL}?name=$file"
"${API_URL}/repos/${REPO}/releases/${RELEASE_ID}/assets?name=$file"
done
else
echo "Failed to create release. Response:"

View File

@ -1,10 +1,5 @@
# Changelog
## [1.2.45] - 2025-02-19
### Added
- update Gitea release workflow to use dynamic upload URL and increment version to 1.2.45
## [1.2.44] - 2025-02-19
### Added
- update Gitea release workflow to include additional outputs and increment version to 1.2.44

View File

@ -9,7 +9,7 @@
; https://docs.platformio.org/page/projectconf.html
[common]
version = "1.2.45"
version = "1.2.44"
[env:esp32dev]
platform = espressif32