Compare commits

...

4 Commits

Author SHA1 Message Date
5d39f04786 docs: update changelog for version 1.2.16
Some checks failed
Release / github-release (push) Has been cancelled
Release / gitea-release (push) Has been cancelled
Release / get-version-and-changelog (push) Has been cancelled
2025-02-19 00:49:39 +01:00
d955e26b82 feat: update Gitea release workflow and increment version to 1.2.16 2025-02-19 00:49:35 +01:00
c20e7de5c3 docs: update changelog for version 1.2.15
Some checks failed
Release / get-version-and-changelog (push) Successful in 7s
Release / github-release (push) Has been skipped
Release / gitea-release (push) Failing after 2s
2025-02-19 00:46:38 +01:00
55c3b3688a feat: update version to 1.2.15 and clean up Gitea release workflow 2025-02-19 00:46:34 +01:00
3 changed files with 17 additions and 21 deletions

View File

@ -11,15 +11,13 @@ on:
type: string type: string
permissions: permissions:
contents: write # Required for creating releases contents: write
issues: read # Required for reading changelog issues: read
pull-requests: read # Required for reading changelog pull-requests: read
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions:
contents: write
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@ -74,21 +72,13 @@ jobs:
fi fi
echo "Creating Gitea release..." echo "Creating Gitea release..."
release_data="{\"tag_name\":\"${{ github.ref_name }}\",\"name\":\"Release ${{ inputs.version }}\",\"body\":${{ toJSON(inputs.changelog) }},\"draft\":false,\"prerelease\":false}"
RESPONSE=$(curl -sS -X POST \ RESPONSE=$(curl -sS -X POST \
-H "Authorization: token ${GITEA_TOKEN}" \ -H "Authorization: token ${GITEA_TOKEN}" \
-H "Content-Type: application/json" \ -H "Content-Type: application/json" \
-H "Accept: application/json" \ -H "Accept: application/json" \
"${GITEA_API_URL}/repos/${GITEA_REPOSITORY}/releases" \ "${GITEA_API_URL}/repos/${GITEA_REPOSITORY}/releases" \
-d @- << EOF -d "$release_data")
{
"tag_name": "${{ github.ref_name }}",
"name": "Release ${{ inputs.version }}",
"body": ${{ toJSON(inputs.changelog) }},
"draft": false,
"prerelease": false
}
EOF
)
# Extract and validate release ID # Extract and validate release ID
RELEASE_ID=$(echo "$RESPONSE" | jq -r .id) RELEASE_ID=$(echo "$RESPONSE" | jq -r .id)
@ -111,8 +101,4 @@ EOF
exit 1 exit 1
fi fi
echo "Successfully uploaded $file" echo "Successfully uploaded $file"
done done
}
}
}
}

View File

@ -1,5 +1,15 @@
# Changelog # Changelog
## [1.2.16] - 2025-02-19
### Added
- update Gitea release workflow and increment version to 1.2.16
## [1.2.15] - 2025-02-19
### Added
- update version to 1.2.15 and clean up Gitea release workflow
## [1.2.14] - 2025-02-19 ## [1.2.14] - 2025-02-19
### Added ### Added
- update version to 1.2.14 and refactor release workflows for improved GitHub and Gitea support - update version to 1.2.14 and refactor release workflows for improved GitHub and Gitea support

View File

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