Compare commits
3 Commits
d058397fa2
...
8d003295e7
Author | SHA1 | Date | |
---|---|---|---|
8d003295e7 | |||
f89500946a | |||
14e745ff06 |
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
@ -119,7 +119,7 @@ jobs:
|
|||||||
echo "EOF" >> $GITHUB_OUTPUT
|
echo "EOF" >> $GITHUB_OUTPUT
|
||||||
- name: Create GitHub Release
|
- name: Create GitHub Release
|
||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ github.token }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
VERSION=${{ steps.get_version.outputs.VERSION }}
|
VERSION=${{ steps.get_version.outputs.VERSION }}
|
||||||
cd .pio/build/esp32dev
|
cd .pio/build/esp32dev
|
||||||
@ -210,7 +210,7 @@ jobs:
|
|||||||
pio run -e esp32dev
|
pio run -e esp32dev
|
||||||
pio run -t buildfs
|
pio run -t buildfs
|
||||||
cp .pio/build/esp32dev/firmware.bin .pio/build/esp32dev/filaman_${VERSION}.bin
|
cp .pio/build/esp32dev/firmware.bin .pio/build/esp32dev/filaman_${VERSION}.bin
|
||||||
cp .pio/build/esp32dev/spiffs.bin .pio/build/esp32dev/webpage_${VERSION}.bin
|
cp .pio/build/esp32dev/spiffs.bin .pio.build/esp32dev/webpage_${VERSION}.bin
|
||||||
(cd .pio/build/esp32dev && esptool.py --chip esp32 merge_bin --fill-flash-size 4MB --flash_mode dio --flash_freq 40m --flash_size 4MB -o filaman_full_${VERSION}.bin 0x1000 bootloader.bin 0x8000 partitions.bin 0x10000 firmware.bin 0x390000 spiffs.bin)
|
(cd .pio/build/esp32dev && esptool.py --chip esp32 merge_bin --fill-flash-size 4MB --flash_mode dio --flash_freq 40m --flash_size 4MB -o filaman_full_${VERSION}.bin 0x1000 bootloader.bin 0x8000 partitions.bin 0x10000 firmware.bin 0x390000 spiffs.bin)
|
||||||
echo "File sizes:"
|
echo "File sizes:"
|
||||||
(cd .pio/build/esp32dev && ls -lh *.bin)
|
(cd .pio/build/esp32dev && ls -lh *.bin)
|
||||||
@ -232,8 +232,6 @@ jobs:
|
|||||||
echo "$CHANGELOG" >> $GITHUB_OUTPUT
|
echo "$CHANGELOG" >> $GITHUB_OUTPUT
|
||||||
echo "EOF" >> $GITHUB_OUTPUT
|
echo "EOF" >> $GITHUB_OUTPUT
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
env:
|
|
||||||
TOKEN: ${{ secrets.GITEA_TOKEN }}
|
|
||||||
run: |
|
run: |
|
||||||
API_URL="${{ needs.route.outputs.gitea_server_url }}/api/v1"
|
API_URL="${{ needs.route.outputs.gitea_server_url }}/api/v1"
|
||||||
REPO="${{ needs.route.outputs.gitea_repository }}"
|
REPO="${{ needs.route.outputs.gitea_repository }}"
|
||||||
|
@ -1,5 +1,13 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.3.6] - 2025-02-21
|
||||||
|
### Changed
|
||||||
|
- update webpages for version v1.3.6
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- update GitHub token reference and correct file path in release workflow
|
||||||
|
|
||||||
|
|
||||||
## [1.3.5] - 2025-02-21
|
## [1.3.5] - 2025-02-21
|
||||||
### Added
|
### Added
|
||||||
- enhance release workflow to support Gitea alongside GitHub
|
- enhance release workflow to support Gitea alongside GitHub
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[common]
|
[common]
|
||||||
version = "1.3.5"
|
version = "1.3.6"
|
||||||
|
|
||||||
[env:esp32dev]
|
[env:esp32dev]
|
||||||
platform = espressif32
|
platform = espressif32
|
||||||
|
Loading…
x
Reference in New Issue
Block a user