Compare commits

...

2 Commits

Author SHA1 Message Date
d4rks1d33 cd1e9d6945 Stupid chatGPT that add utm_source=chatgpt.com on links
Build Dev Firmware / build (push) Failing after 18s
2026-05-18 20:39:55 -03:00
d4rks1d33 c49b843096 Stupid chatGPT that add utm_source=chatgpt.com on links 2026-05-18 20:37:13 -03:00
2 changed files with 14 additions and 23 deletions
+11 -20
View File
@@ -77,33 +77,24 @@ jobs:
echo "FILE=$FILE" >> $GITHUB_OUTPUT
- name: Read changelog
id: changelog
shell: bash
run: |
{
echo 'CHANGELOG<<EOF'
cat CHANGELOG.md
echo 'EOF'
} >> "$GITHUB_OUTPUT"
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.version.outputs.NEW_TAG }}
name: Release ${{ steps.version.outputs.NEW_TAG }}
generate_release_notes: true
body: ${{ steps.changelog.outputs.CHANGELOG }}
make_latest: true
files: |
${{ steps.firmware.outputs.FILE }}
- name: Read changelog
id: changelog
run: |
CHANGELOG=$(cat CHANGELOG.md)
{
echo "CHANGELOG<<EOF"
echo "$CHANGELOG"
echo "EOF"
} >> $GITHUB_OUTPUT
- name: Create Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.tag.outputs.TAG }}
name: Dev Build ${{ steps.tag.outputs.TAG }}
body: ${{ steps.changelog.outputs.CHANGELOG }}
files: ${{ steps.firmware.outputs.FILE }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+3 -3
View File
@@ -21,7 +21,7 @@
### Special Thanks
Special thanks to [RocketGod-git](https://github.com/RocketGod-git?utm_source=chatgpt.com) for inspiration from the Proto Pirate application and related UI/interaction concepts that helped shape the CarEmulate workflow.
Special thanks to [RocketGod-git](https://github.com/RocketGod-git) for inspiration from the Proto Pirate application and related UI/interaction concepts that helped shape the CarEmulate workflow.
---
@@ -31,7 +31,7 @@ Protocols can now expose UP/DOWN/LEFT/RIGHT button cycling in the transmitter vi
### New macro
```c id="x0p8ad"
```
SUBGHZ_CUSTOM_BTN_DEFINE_MAP(
my_proto,
{SUBGHZ_CUSTOM_BTN_OK, 0xAA},
@@ -58,7 +58,7 @@ The macro automatically generates:
### Special Thanks
Thanks to [Zero-Mega](https://github.com/Zero-Mega?utm_source=chatgpt.com) for research, references, and contributions related to Land Rover protocol support.
Thanks to [Zero-Mega](https://github.com/Zero-Mega) for research, references, and contributions related to Land Rover protocol support.
---