Compare commits

...

3 Commits

Author SHA1 Message Date
d2b40daaca docs: update changelog and header for version v1.3.84
Some checks failed
Release Workflow / detect-provider (push) Successful in 5s
Release Workflow / github-release (push) Has been skipped
Release Workflow / gitea-release (push) Failing after 2m47s
2025-02-23 15:13:49 +01:00
9d58cbc31c docs: update webpages for version v1.3.84 2025-02-23 15:13:48 +01:00
d09aeaf47c fix: add FTP_HOST variable for firmware upload in Gitea release workflow 2025-02-23 15:13:45 +01:00
3 changed files with 16 additions and 4 deletions

View File

@ -12,6 +12,9 @@ on:
FTP_USER: FTP_USER:
description: 'FTP User for firmware upload' description: 'FTP User for firmware upload'
required: true required: true
FTP_HOST:
description: 'FTP Host for firmware upload'
required: true
jobs: jobs:
create-release: create-release:
@ -214,13 +217,14 @@ jobs:
env: env:
FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }} FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }}
FTP_USER: ${{ secrets.FTP_USER }} FTP_USER: ${{ secrets.FTP_USER }}
FTP_HOST: ${{ secrets.FTP_HOST }}
VERSION: ${{ steps.get_version.outputs.VERSION }} VERSION: ${{ steps.get_version.outputs.VERSION }}
run: | run: |
cd .pio/build/esp32dev cd .pio/build/esp32dev
lftp -c 'set ssl:verify-certificate no; \ lftp -c "set ssl:verify-certificate no; \
set ftp:ssl-protect-data true; \ set ftp:ssl-protect-data true; \
set ftp:ssl-force true; \ set ftp:ssl-force true; \
set ssl:check-hostname false; \ set ssl:check-hostname false; \
set ftp:ssl-auth TLS; \ set ftp:ssl-auth TLS; \
open -u '$FTP_USER','$FTP_PASSWORD' ftp://filaman.app:21; \ open -u $FTP_USER,$FTP_PASSWORD $FTP_HOST; \
put -O / filaman_full_'$VERSION'.bin -o filaman_full.bin' put -O / filaman_full_$VERSION.bin -o filaman_full.bin"

View File

@ -1,5 +1,13 @@
# Changelog # Changelog
## [1.3.84] - 2025-02-23
### Added
- add FTP_HOST variable for firmware upload in Gitea release workflow
### Changed
- update webpages for version v1.3.84
## [1.3.83] - 2025-02-23 ## [1.3.83] - 2025-02-23
### Changed ### Changed
- update webpages for version v1.3.83 - update webpages for version v1.3.83

View File

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